From 780e8dd0ef9b4325b35c0b680447488455d4e44f Mon Sep 17 00:00:00 2001 From: Brandon Low Date: Sun, 5 Mar 2006 18:40:51 +0000 Subject: Fix other yellow builds git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8914 a1c6a512-1295-4272-9138-f99709370657 --- firmware/export/kernel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/export/kernel.h b/firmware/export/kernel.h index 89c56da1b9..26b1cbe2e7 100644 --- a/firmware/export/kernel.h +++ b/firmware/export/kernel.h @@ -69,7 +69,7 @@ struct mutex #if ((CONFIG_CPU == PP5002) || (CONFIG_CPU == PP5020)) && defined(BOOTLOADER) /* We don't enable interrupts in the iPod bootloader, so we need to fake the current_tick variable */ -#define current_tick (USEC_TIMER/10000) +#define current_tick (signed)(USEC_TIMER/10000) #else extern long current_tick; #endif -- cgit v1.2.3