From: Ben Gras Date: Wed, 14 Sep 2005 00:49:08 +0000 (+0000) Subject: Fix by Al. X-Git-Tag: v3.1.0~96 X-Git-Url: http://zhaoyanbai.com/repos/pkcs11-list.html?a=commitdiff_plain;h=17e34f508df78c0f1f324b6d4b4c2e829b835b1d;p=minix.git Fix by Al. --- diff --git a/include/timers.h b/include/timers.h index aa1b49607..8dbd135d0 100644 --- a/include/timers.h +++ b/include/timers.h @@ -43,10 +43,10 @@ typedef struct timer #define tmr_arg(tp) (&(tp)->tmr_arg) #define tmr_exp_time(tp) (&(tp)->tmr_exp_time) -/* Timers should be initialize once before they are being used. Be careful - * not the reinitialize a timer that is a list of timers, or the chain will - * be broken. - */ +/* Timers should be initialized once before they are being used. Be careful + * not to reinitialize a timer that is in a list of timers, or the chain + * will be broken. + */ #define tmr_inittimer(tp) (void)((tp)->tmr_exp_time = TMR_NEVER, \ (tp)->tmr_next = NULL)