Merge pull request #25223 from akien-mga/base64-return-long

base64.h: Fix return type mismatch
This commit is contained in:
Rémi Verschelde 2019-01-22 13:59:52 +01:00 committed by GitHub
commit 6ab16512eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 */