From 467f7c416bd3071dbede1a32ff07a88cd7f8a54c Mon Sep 17 00:00:00 2001 From: kugel Date: Mon, 3 Aug 2009 15:49:46 +0000 Subject: [PATCH] Fix yellows relvealed by the ABS() rework tonight. The abs() didn't seem to make much sense there anyway. Thanks Dave Chapman. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22142 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/zxbox/helpers.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/plugins/zxbox/helpers.c b/apps/plugins/zxbox/helpers.c index fac4ba062..db57ea8e0 100644 --- a/apps/plugins/zxbox/helpers.c +++ b/apps/plugins/zxbox/helpers.c @@ -20,7 +20,7 @@ int my_putc(char c , int fd){ void *my_malloc(size_t size) { static char *offset = NULL; - static ssize_t totalSize = 0; + static size_t totalSize = 0; char *ret; int remainder = size % 4; @@ -29,10 +29,10 @@ void *my_malloc(size_t size) if (offset == NULL) { - offset = rb->plugin_get_audio_buffer((size_t *)&totalSize); + offset = rb->plugin_get_audio_buffer(&totalSize); } - if (size + 4 > abs(totalSize) ) + if (size + 4 > totalSize) { /* We've made our point. */ return NULL; -- 2.11.4.GIT