From: Tiago Cunha Date: Tue, 7 Feb 2012 22:57:16 +0000 (+0000) Subject: Remove stray spaces. X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=739a5e6e3218529604d7a36cda21910719897e7b;p=spectrwm.git Remove stray spaces. Prompted by marco. --- diff --git a/scrotwm.c b/scrotwm.c index cb25ad4..789aca0 100644 --- a/scrotwm.c +++ b/scrotwm.c @@ -3322,7 +3322,7 @@ get_win_name(Window win) /* try _NET_WM_NAME first */ if (get_property(win, a_netwmname, 0L, a_utf8_string, NULL, &nbytes, &prop)) { - XFree(prop); + XFree(prop); if (get_property(win, a_netwmname, nbytes, a_utf8_string, &nitems, NULL, &prop)) return (prop); @@ -3330,7 +3330,7 @@ get_win_name(Window win) /* fallback to WM_NAME */ if (!get_property(win, a_wmname, 0L, a_string, NULL, &nbytes, &prop)) - return (NULL); + return (NULL); XFree(prop); if (get_property(win, a_wmname, nbytes, a_string, &nitems, NULL, &prop)) return (prop);