summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-01-22 13:59:52 +0100
committerGitHub <noreply@github.com>2019-01-22 13:59:52 +0100
commit6ab16512eb7dd8ec336b75cdaac396dfa661d0e7 (patch)
treebba5a1a08b52d6f1708c6b496d94cf58928095c4
parent8a276a896e3a02e3036986316b7bd5cc0df46c05 (diff)
parentb21b0ff236626d1661e78bf8c66d88d2bfd76881 (diff)
Merge pull request #25223 from akien-mga/base64-return-long
base64.h: Fix return type mismatch
-rw-r--r--thirdparty/misc/base64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/thirdparty/misc/base64.h b/thirdparty/misc/base64.h
index 4c300382c1..ffcd0af973 100644
--- a/thirdparty/misc/base64.h
+++ b/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 */