mirror of
https://github.com/godotengine/godot.git
synced 2025-01-24 10:50:44 +00:00
Merge pull request #25223 from akien-mga/base64-return-long
base64.h: Fix return type mismatch
This commit is contained in:
commit
6ab16512eb
4
thirdparty/misc/base64.h
vendored
4
thirdparty/misc/base64.h
vendored
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user