Explorar el Código

fix for new c version

MX hace 1 año
padre
commit
35084c0a02
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      lib/crypto/base32.c

+ 1 - 1
lib/crypto/base32.c

@@ -51,7 +51,7 @@ char* base32_encode(
         int ret = base32_encode_character(out[i], alphabet);
 
         if(ret == -1) {
-            return false;
+            return NULL;
         } else {
             out[i] = ret;
         }