소스 검색

base64.h: Fix return type mismatch

Fixes #25220.
Rémi Verschelde 6 년 전
부모
커밋
b21b0ff236
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      thirdparty/misc/base64.h

+ 2 - 2
thirdparty/misc/base64.h

@@ -11,8 +11,8 @@
 
 extern "C" {
 
-uint32_t base64_encode(char *to, char *from, uint32_t len);
-uint32_t base64_decode(char *to, char *from, uint32_t len);
+long base64_encode(char *to, char *from, unsigned int len);
+long base64_decode(char *to, char *from, unsigned int len);
 };
 
 #endif /* BASE64_H */