From: asterix Date: Wed, 11 Jan 2012 14:40:21 +0000 (+0000) Subject: Fix compiler warning. X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=7c66ae1b30f81fd138f9f4b6ad49ac4d527af642;hp=e7ee0183e9e42ae6a5f2ebf19d1a4a6c93672a71;p=bertos.git Fix compiler warning. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@5243 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/algo/fletcher32.c b/bertos/algo/fletcher32.c index d4f5ac0b..f07ba692 100644 --- a/bertos/algo/fletcher32.c +++ b/bertos/algo/fletcher32.c @@ -47,7 +47,7 @@ void fletcher32_init(Fletcher32 *f) void fletcher32_update(Fletcher32 *f, const void *_buf, size_t len) { - uint16_t data; + uint16_t data = 0; const uint8_t *buf = (const uint8_t *)_buf; uint8_t last = buf[len-1];