From 61e90cb3e0e1951e6e2d75f90c34adf5b3beb38d Mon Sep 17 00:00:00 2001 From: Robert Spalek Date: Sun, 8 Jun 2003 18:03:34 +0000 Subject: [PATCH] bugfix found by gcc-3.3 --- lib/base64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5