summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard R. Link <brlink@debian.org>2009-07-15 19:06:41 +0200
committerBernhard R. Link <brlink@debian.org>2009-07-15 19:06:41 +0200
commit12d21a72e0103f32dfb34d5fd05934ceee78e30d (patch)
tree5095b7831672030f9741ae54462463a5b57bb2b0
parentdd1ca608f1846d52448e80751749dc0e64d24f46 (diff)
downloadratpoison-12d21a72e0103f32dfb34d5fd05934ceee78e30d.zip
silence gcc false-positive undefined warning
-rw-r--r--src/actions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/actions.c b/src/actions.c
index 0aef237..b9116dd 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -4872,7 +4872,7 @@ frestore (char *data, rp_screen *s)
rp_window *win;
struct list_head fset;
int max = -1;
- char *nexttok;
+ char *nexttok = NULL;
INIT_LIST_HEAD (&fset);