##// END OF EJS Templates
base85: fix comparison of an int and a long...
Augie Fackler -
r26074:c1aefe57 default
parent child Browse files
Show More
@@ -21,7 +21,7 b' static char b85dec[256];'
21 static void
21 static void
22 b85prep(void)
22 b85prep(void)
23 {
23 {
24 int i;
24 unsigned i;
25
25
26 memset(b85dec, 0, sizeof(b85dec));
26 memset(b85dec, 0, sizeof(b85dec));
27 for (i = 0; i < sizeof(b85chars); i++)
27 for (i = 0; i < sizeof(b85chars); i++)
General Comments 0
You need to be logged in to leave comments. Login now