Fixed warnings when logf is enabled.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15243 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2007-10-21 11:02:51 +00:00
parent 11251f4555
commit 47cdc89552
2 changed files with 11 additions and 5 deletions

View file

@ -75,7 +75,10 @@ char * cpu_boost_log_getlog_first(void)
#if NUM_CORES > 1
spinlock_unlock(&boostctrl_spin);
#endif
return first;
}
char * cpu_boost_log_getlog_next(void)
{
int message;
@ -97,7 +100,10 @@ char * cpu_boost_log_getlog_next(void)
#if NUM_CORES > 1
spinlock_unlock(&boostctrl_spin);
#endif
return next;
}
void cpu_boost_(bool on_off, char* location, int line)
{
#if NUM_CORES > 1