Unverified Commit 6ab16512 by Rémi Verschelde Committed by GitHub

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

base64.h: Fix return type mismatch
parents 8a276a89 b21b0ff2
......@@ -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 */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment