X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fbase64.c;h=8cc17f22431067205acda056a80dec57323da90d;hp=e268c825d072d6cf47121038c8624855ba4e3bee;hb=f00caf7c3f8e70278f6ada47a1f5da79a8ba6858;hpb=5242cb5a8634bfa38b9333ff7f903e718ac6e292 diff --git a/src/base64.c b/src/base64.c index e268c82..8cc17f2 100644 --- a/src/base64.c +++ b/src/base64.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2012 Index Data + * Copyright (C) Index Data * See the file LICENSE for details. */ /** @@ -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)