# HG changeset patch # User Mark Doliner # Date 1049770798 0 # Node ID 19814ecb23e0597cbf6ee4639d587a1d58c0ff41 # Parent 617d1474467a7919dae2407f12406decd5e5d64c [gaim-migrate @ 5431] Oof committer: Tailor Script diff -r 617d1474467a -r 19814ecb23e0 NEWS --- a/NEWS Tue Apr 08 02:52:22 2003 +0000 +++ b/NEWS Tue Apr 08 02:59:58 2003 +0000 @@ -30,6 +30,9 @@ will make for fewwer questions. Get used to using releases people, we want to use cvs for actual development :-). + Mark: I didn't want to write any news without actually having done + anything, so I fixed a meaningless compile warning. Boo-yeah. + Sean: Luke can't spell "fewer". How un-cool is that? 0.60 (04/04/2003): diff -r 617d1474467a -r 19814ecb23e0 src/util.c --- a/src/util.c Tue Apr 08 02:52:22 2003 +0000 +++ b/src/util.c Tue Apr 08 02:59:58 2003 +0000 @@ -492,7 +492,7 @@ */ int frombase16(const char *ascii, char **raw) { - int len, i, accumulator; + int len, i, accumulator=0; char *data; if (!ascii || !(len = strlen(ascii)) || (len % 2))