X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fbase64.c;h=8cc17f22431067205acda056a80dec57323da90d;hb=d1b6ed4a27c255041e3d719e4b05ab476c337bbf;hp=cf6d63a984a41cac91673fd2fb9eddf8faa63791;hpb=0c46d2e66bdeea1600e700124a81a5d0a65d349e;p=yaz-moved-to-github.git diff --git a/src/base64.c b/src/base64.c index cf6d63a..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-2013 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)