summaryrefslogtreecommitdiff
path: root/apps/plugins/zxbox/helpers.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/zxbox/helpers.c')
-rw-r--r--apps/plugins/zxbox/helpers.c2
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){
19void *my_malloc(size_t size) 19void *my_malloc(size_t size)
20{ 20{
21 static char *offset = NULL; 21 static char *offset = NULL;
22 static int totalSize = 0; 22 static ssize_t totalSize = 0;
23 char *ret; 23 char *ret;
24 24
25 int remainder = size % 4; 25 int remainder = size % 4;