base64.h: Fix return type mismatch

Fixes #25220.
This commit is contained in:
Rémi Verschelde 2019-01-22 12:47:11 +01:00
parent b86f16ed40
commit b21b0ff236
1 changed files with 2 additions and 2 deletions

View File

@ -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 */