summaryrefslogtreecommitdiffstats
path: root/src/todo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/todo.c')
-rw-r--r--src/todo.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/todo.c b/src/todo.c
index 8b03fce..8d7a4d5 100644
--- a/src/todo.c
+++ b/src/todo.c
@@ -198,10 +198,9 @@ static void
todo_delete_note_bynum (unsigned num)
{
unsigned n;
- struct todo *i, **iptr;
+ struct todo *i;
n = 0;
- iptr = &todolist;
for (i = todolist; i != 0; i = i->next)
{
if (n == num)
@@ -211,7 +210,6 @@ todo_delete_note_bynum (unsigned num)
erase_note (&i->note, ERASE_FORCE_ONLY_NOTE);
return;
}
- iptr = &i->next;
n++;
}
/* NOTREACHED */