diff options
author | Sunguk Lee | 2018-10-04 05:33:28 +0900 |
---|---|---|
committer | Rémy F | 2018-10-03 22:33:28 +0200 |
commit | f6fe7c481051f7dec8be41c420737a7ede72a2bf (patch) | |
tree | 720498123008eead1118b1416385235344a276d8 | |
parent | Add ksceGzipDecompress (#353) (diff) | |
download | vds-libraries-f6fe7c481051f7dec8be41c420737a7ede72a2bf.tar.gz |
psp2kern: Change args types of ksceGzipDecompress (#354)
these value should be uint32_t instead signed int
related: #353 comments
Diffstat (limited to '')
-rw-r--r-- | include/kernel/kernel/utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kernel/kernel/utils.h b/include/kernel/kernel/utils.h index 2211547..e9055be 100644 --- a/include/kernel/kernel/utils.h +++ b/include/kernel/kernel/utils.h @@ -72,7 +72,7 @@ int sceHmacSha256Digest(const unsigned char *key, uint32_t key_len, const void * * * @return dst_size on success, < 0 on error. */ -int sceGzipDecompress(void *dst, int dst_size, const void *src, int *crc32); +int sceGzipDecompress(void *dst, uint32_t dst_size, const void *src, uint32_t *crc32); #ifdef __cplusplus } |