Fixed typo in printf() in fxp debug statement (caused delta

value not to be printed)
This commit is contained in:
Ben Gras 2005-06-27 08:55:34 +00:00
parent b25146d3de
commit 62cb81cb3a

View file

@ -2378,7 +2378,7 @@ tmr_func_t watchdog; /* watchdog function to be called */
fxp_timers->tmr_exp_time < fxp_next_timeout)
{
fxp_next_timeout= fxp_timers->tmr_exp_time;
printf("fxp_set_timer: calling sys_syncalrm for %d (now%+d)\n",
printf("fxp_set_timer: calling sys_syncalrm for %d (now+%d)\n",
fxp_next_timeout, fxp_next_timeout-now);
r= sys_syncalrm(SELF, fxp_next_timeout, 1);
if (r != OK)