summaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
authorportix <portix@gmx.net>2011-09-19 19:33:57 +0200
committerportix <portix@gmx.net>2011-09-19 19:33:57 +0200
commitc8221e390d27cc4a3e887b3ffd6cfb04caeefa09 (patch)
tree6420b37bdc370da4d8035d65b0d3abd4249962e9 /src/util.c
parent1cf9ec79f38a4c001afd52f5472bdfec3f9d19c2 (diff)
downloaddwb-c8221e390d27cc4a3e887b3ffd6cfb04caeefa09.zip
Introducing CFLAGS and LDFLAGS in place of FLAGS
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c
index e33d7d5a..ec61de7b 100644
--- a/src/util.c
+++ b/src/util.c
@@ -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;