From: Robert Spalek Date: Sun, 8 Jun 2003 18:03:34 +0000 (+0000) Subject: bugfix found by gcc-3.3 X-Git-Tag: holmes-import~1257 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=61e90cb3e0e1951e6e2d75f90c34adf5b3beb38d;p=libucw.git bugfix found by gcc-3.3 --- diff --git a/lib/base64.c b/lib/base64.c index fe1a7c4c..1e7bc52e 100644 --- a/lib/base64.c +++ b/lib/base64.c @@ -59,7 +59,7 @@ uns base64_decode(byte *dest, byte *src, uns len) { byte *current = src; - byte ch; + uns ch; uns i = 0, j = 0; static byte reverse_table[256]; static uns table_built = 0;