aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/atimer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/atimer.c b/src/atimer.c
index 432e2590dad..bcd38632ebd 100644
--- a/src/atimer.c
+++ b/src/atimer.c
@@ -175,9 +175,9 @@ cancel_atimer (timer)
175 for (t = *list, prev = NULL; t && t != timer; prev = t, t = t->next) 175 for (t = *list, prev = NULL; t && t != timer; prev = t, t = t->next)
176 ; 176 ;
177 177
178 /* If it is, take it off the its list, and put in on the 178 /* If it is, take it off its list, and put in on the free-list.
179 free-list. We don't bother to arrange for setting a 179 We don't bother to arrange for setting a different alarm time,
180 different alarm time, since a too early one doesn't hurt. */ 180 since a too early one doesn't hurt. */
181 if (t) 181 if (t)
182 { 182 {
183 if (prev) 183 if (prev)