summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaud Fontaine <arnau@debian.org>2011-12-14 19:24:55 +0900
committerArnaud Fontaine <arnau@debian.org>2011-12-14 20:08:58 +0900
commit84d26bdf9c96b51dccedd89b70095bae1b13fdd5 (patch)
tree077b1d34784c311cf59daa646b23f6a22cc5593e
parent7fe1a565a902798a8d69ea0c3f2c8c2e7055189c (diff)
Fix GCC warning (-Wuninitialized).
-rw-r--r--transSet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/transSet.c b/transSet.c
index 2b4b75b..292e344 100644
--- a/transSet.c
+++ b/transSet.c
@@ -120,7 +120,7 @@ main (int argc, char **argv)
int flag_no_regex = 0;
int o;
float min = 0, max = 1;
- char *idstr, *namestr;
+ char *idstr = NULL, *namestr = NULL;
char *windowname = NULL;
int options_index = 0;