diff options
author | 2016-03-16 16:05:28 +0100 | |
---|---|---|
committer | 2016-03-16 17:31:58 +0100 | |
commit | 2c6fcae14552ab6e7addc82516617a135f86b5ca (patch) | |
tree | e6c8aff7b0fca5ef81c02bfb7c2d71ec6fc97046 /src/wgtpkg-base64.h | |
parent | abfae2b6d73d7be40ffbff8e8429f71d82df90b5 (diff) |
cmake: improves error detection
Add detection of problem of cast.
The problems are corrected in the patch.
Change-Id: I8dc1e987531790860e390dea53ddf49d52339cb2
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/wgtpkg-base64.h')
-rw-r--r-- | src/wgtpkg-base64.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wgtpkg-base64.h b/src/wgtpkg-base64.h index 90917a9..b3616b4 100644 --- a/src/wgtpkg-base64.h +++ b/src/wgtpkg-base64.h @@ -17,8 +17,8 @@ */ -extern char *base64encw(const char *buffer, int length, int width); -extern char *base64enc(const char *buffer, int length); -extern int base64dec(const char *buffer, char **output); +extern char *base64encw(const char *buffer, size_t length, unsigned width); +extern char *base64enc(const char *buffer, size_t length); +extern ssize_t base64dec(const char *buffer, char **output); extern int base64eq(const char *buf1, const char *buf2); |