mirror of
https://github.com/vale981/spectrwm
synced 2025-03-05 09:51:38 -05:00
no {} around DNPRINTF.
This commit is contained in:
parent
ef200b93d6
commit
48f1a28fef
1 changed files with 2 additions and 1 deletions
|
@ -2029,9 +2029,10 @@ manage_window(Window id)
|
|||
if (prop && win->transient == 0) {
|
||||
DNPRINTF(SWM_D_PROP, "got property _SWM_WS=%s\n", prop);
|
||||
ws_idx = strtonum(prop, 0, 9, &errstr);
|
||||
if (errstr)
|
||||
if (errstr) {
|
||||
DNPRINTF(SWM_D_EVENT, "window idx is %s: %s",
|
||||
errstr, prop);
|
||||
}
|
||||
ws = &r->s->ws[ws_idx];
|
||||
} else
|
||||
ws = r->ws;
|
||||
|
|
Loading…
Add table
Reference in a new issue