Pārlūkot izejas kodu

fix for new c version

MX 2 gadi atpakaļ
vecāks
revīzija
35084c0a02
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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;
         }