Skip to content

Commit

Permalink
[PATCH] timer.c NULL noise removal
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed Feb 8, 2006
1 parent 76edc60 commit 53f087f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ unsigned long next_timer_interrupt(void)
base = &__get_cpu_var(tvec_bases);
spin_lock(&base->t_base.lock);
expires = base->timer_jiffies + (LONG_MAX >> 1);
list = 0;
list = NULL;

/* Look for timer events in tv1. */
j = base->timer_jiffies & TVR_MASK;
Expand Down

0 comments on commit 53f087f

Please sign in to comment.