Reformat: delete trailing whitespace
[yaz-moved-to-github.git] / src / base64.c
index 2e44ff6..e268c82 100644 (file)
@@ -86,7 +86,7 @@ int yaz_base64decode(const char *in, char *out)
     while (len >= 4)
     {
        char i0, i1, i2, i3;
-        
+
        i0 = next_char(&in, &len);
         if (i0 < 0)
             return -1;