diff options
Diffstat (limited to 'apps/plugins/zxbox/helpers.c')
-rw-r--r-- | apps/plugins/zxbox/helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/zxbox/helpers.c b/apps/plugins/zxbox/helpers.c index c176c007a4..d6b25a2452 100644 --- a/apps/plugins/zxbox/helpers.c +++ b/apps/plugins/zxbox/helpers.c @@ -19,7 +19,7 @@ int my_putc(char c , int fd){ void *my_malloc(size_t size) { static char *offset = NULL; - static int totalSize = 0; + static ssize_t totalSize = 0; char *ret; int remainder = size % 4; |