X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fbase64.c;h=a8eb2031978e033217b7f6f5603df29b3137585e;hp=cf6d63a984a41cac91673fd2fb9eddf8faa63791;hb=2c293bcf3f3d36ca121b1e23769919c941e8ea19;hpb=a7f066f298c283530e1e542c87858b28d594238b diff --git a/src/base64.c b/src/base64.c index cf6d63a..a8eb203 100644 --- a/src/base64.c +++ b/src/base64.c @@ -85,7 +85,7 @@ int yaz_base64decode(const char *in, char *out) while (len >= 4) { - char i0, i1, i2, i3; + int i0, i1, i2, i3; i0 = next_char(&in, &len); if (i0 < 0)