summaryrefslogtreecommitdiff
path: root/firmware/export/kernel.h
diff options
context:
space:
mode:
authorBrandon Low <lostlogic@rockbox.org>2006-03-05 18:40:51 +0000
committerBrandon Low <lostlogic@rockbox.org>2006-03-05 18:40:51 +0000
commit780e8dd0ef9b4325b35c0b680447488455d4e44f (patch)
tree2a54e3b9fcab708ef27b7649b0c8ca19379c4bce /firmware/export/kernel.h
parentaab008053eac49d0d73c3835b27f77163cfe4a5b (diff)
downloadrockbox-780e8dd0ef9b4325b35c0b680447488455d4e44f.tar.gz
rockbox-780e8dd0ef9b4325b35c0b680447488455d4e44f.zip
Fix other yellow builds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8914 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/kernel.h')
-rw-r--r--firmware/export/kernel.h2
1 files changed, 1 insertions, 1 deletions
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
69#if ((CONFIG_CPU == PP5002) || (CONFIG_CPU == PP5020)) && defined(BOOTLOADER) 69#if ((CONFIG_CPU == PP5002) || (CONFIG_CPU == PP5020)) && defined(BOOTLOADER)
70/* We don't enable interrupts in the iPod bootloader, so we need to fake 70/* We don't enable interrupts in the iPod bootloader, so we need to fake
71 the current_tick variable */ 71 the current_tick variable */
72#define current_tick (USEC_TIMER/10000) 72#define current_tick (signed)(USEC_TIMER/10000)
73#else 73#else
74extern long current_tick; 74extern long current_tick;
75#endif 75#endif