summaryrefslogtreecommitdiff
path: root/firmware/export/kernel.h
diff options
context:
space:
mode:
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