]> Zhao Yanbai Git Server - minix.git/commitdiff
Fixed typo in printf() in fxp debug statement (caused delta
authorBen Gras <ben@minix3.org>
Mon, 27 Jun 2005 08:55:34 +0000 (08:55 +0000)
committerBen Gras <ben@minix3.org>
Mon, 27 Jun 2005 08:55:34 +0000 (08:55 +0000)
value not to be printed)

drivers/fxp/fxp.c

index 91f0b8ffac424513863a9361e5168547c700ac52..da629c50f968be59dfd27bb434e31c10b8cf6b95 100644 (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)