From: Michael Stapelberg Date: Fri, 23 Oct 2009 20:57:35 +0000 (+0200) Subject: Fix debug message in cfgparse.y (Thanks shatter) X-Git-Tag: 3.d~35 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=15d83d472bef8c699d75c51145f641d3191a7073;p=i3%2Fi3 Fix debug message in cfgparse.y (Thanks shatter) --- diff --git a/src/cfgparse.y b/src/cfgparse.y index 4cb82998..e137fc02 100644 --- a/src/cfgparse.y +++ b/src/cfgparse.y @@ -407,9 +407,11 @@ screen: assign: TOKASSIGN WHITESPACE window_class WHITESPACE optional_arrow assign_target { - printf("assignment of %s to %d\n", $3, $6); + printf("assignment of %s\n", $3); struct Assignment *new = $6; + printf(" to %d\n", new->workspace); + printf(" floating = %d\n", new->floating); new->windowclass_title = strdup($3); TAILQ_INSERT_TAIL(&assignments, new, assignments); }