Browse Source

fix for new c version

MX 1 year ago
parent
commit
35084c0a02
1 changed files with 1 additions and 1 deletions
  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;
         }