]> mj.ucw.cz Git - libucw.git/blobdiff - lib/base64.c
sped up approximately 6 times:
[libucw.git] / lib / base64.c
index fe1a7c4c0fb21c63d735366c6bfa428ce6825a28..1e7bc52e9ca0022d28eecdd69d5e7d8f417e0d66 100644 (file)
@@ -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;