diff options
author | portix <portix@gmx.net> | 2011-09-19 19:33:57 +0200 |
---|---|---|
committer | portix <portix@gmx.net> | 2011-09-19 19:33:57 +0200 |
commit | c8221e390d27cc4a3e887b3ffd6cfb04caeefa09 (patch) | |
tree | 6420b37bdc370da4d8035d65b0d3abd4249962e9 /src/util.c | |
parent | 1cf9ec79f38a4c001afd52f5472bdfec3f9d19c2 (diff) | |
download | dwb-c8221e390d27cc4a3e887b3ffd6cfb04caeefa09.zip |
Introducing CFLAGS and LDFLAGS in place of FLAGS
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -176,7 +176,7 @@ util_arg_to_char(Arg *arg, DwbType type) { else if (type == CHAR || type == COLOR_CHAR) { if (arg->p) { char *tmp = (char*) arg->p; - value = g_strdup_printf(tmp); + value = g_strdup(tmp); } } return value; |