summary refs log tree commit diff
path: root/parse.y
diff options
context:
space:
mode:
authorokan <okan>2012-12-19 15:21:34 +0000
committerokan <okan>2012-12-19 15:21:34 +0000
commitdc1e3a88438dc732349154bca610dbe813d2fc04 (patch)
tree90bbdd6c3174f497c8dc86ce5fbc7f9924d2b2d5 /parse.y
parentc565b790eda26074619aaf7c29234b6975862056 (diff)
downloadcwm-dc1e3a88438dc732349154bca610dbe813d2fc04.tar.gz
cwm-dc1e3a88438dc732349154bca610dbe813d2fc04.tar.xz
cwm-dc1e3a88438dc732349154bca610dbe813d2fc04.zip
gc unused cmd 'flags' variable
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 2404f4b..4f00198 100644
--- a/parse.y
+++ b/parse.y
@@ -126,7 +126,7 @@ main		: FONTNAME STRING		{
 			conf->snapdist = $2;
 		}
 		| COMMAND STRING string		{
-			conf_cmd_add(conf, $3, $2, 0);
+			conf_cmd_add(conf, $3, $2);
 			free($2);
 			free($3);
 		}