From 6fb0f6f4c6c5e17b9485fc666823feede35723b9 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Tue, 5 Apr 2011 01:50:23 +0200 Subject: Compare pointers to "NULL" instead of "0". "bad_zero.cocci" spatch from http://coccinelle.lip6.fr/impact_linux.php. Signed-off-by: Lukas Fleischer --- src/todo.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/todo.c') diff --git a/src/todo.c b/src/todo.c index 8d7a4d5..4076510 100644 --- a/src/todo.c +++ b/src/todo.c @@ -182,7 +182,7 @@ todo_add (char *mesg, int id, char *note) absid = abs (id); for (;;) { - if (*i == 0 || abs ((*i)->id) > absid) + if (*i == NULL || abs ((*i)->id) > absid) { o->next = *i; *i = o; @@ -201,7 +201,7 @@ todo_delete_note_bynum (unsigned num) struct todo *i; n = 0; - for (i = todolist; i != 0; i = i->next) + for (i = todolist; i != NULL; i = i->next) { if (n == num) { @@ -225,7 +225,7 @@ todo_delete_bynum (unsigned num, enum eraseflg flag) n = 0; iptr = &todolist; - for (i = todolist; i != 0; i = i->next) + for (i = todolist; i != NULL; i = i->next) { if (n == num) { @@ -451,7 +451,7 @@ todo_update_panel (int which_pan) /* Print todo item in the panel. */ erase_window_part (win[TOD].p, 1, title_lines, win[TOD].w - 2, win[TOD].h - 2); - for (i = todolist; i != 0; i = i->next) + for (i = todolist; i != NULL; i = i->next) { num_todo++; t_realpos = num_todo - first; -- cgit v1.2.3-54-g00ecf