From: Ben Gras Date: Mon, 27 Jun 2005 08:55:34 +0000 (+0000) Subject: Fixed typo in printf() in fxp debug statement (caused delta X-Git-Tag: v3.1.0~702 X-Git-Url: http://zhaoyanbai.com/repos/%22http:/www.isc.org/static/%20%22?a=commitdiff_plain;h=62cb81cb3ae95d8acf169f7595fcfd4a09eca7b0;p=minix.git Fixed typo in printf() in fxp debug statement (caused delta value not to be printed) --- diff --git a/drivers/fxp/fxp.c b/drivers/fxp/fxp.c index 91f0b8ffa..da629c50f 100644 --- a/drivers/fxp/fxp.c +++ b/drivers/fxp/fxp.c @@ -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)