diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2021-03-15 18:53:43 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2021-03-15 18:53:43 -0700 |
commit | 82008ccd7ad52e7e2f917b6a1de42dbe8546b7ec (patch) | |
tree | 195a71a2c6232b953b60825383b555aed6166111 /src/rmd_wm_is_compositing.c | |
parent | f3f4730c2236a3f27a921d818f14bc62b0e311d0 (diff) |
*: random whitespace cleanups
Mostly trailing space/tab removals, no functional changes.
Diffstat (limited to 'src/rmd_wm_is_compositing.c')
-rw-r--r-- | src/rmd_wm_is_compositing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rmd_wm_is_compositing.c b/src/rmd_wm_is_compositing.c index 95bc307..d6d5db4 100644 --- a/src/rmd_wm_is_compositing.c +++ b/src/rmd_wm_is_compositing.c @@ -42,14 +42,14 @@ boolean rmdWMIsCompositing(Display *dpy, int screen) char buf[32]; char *window_manager=rmdWMCheck( dpy, RootWindow( dpy, screen ) ); - //If the wm name is queried successfully the wm is compliant (source + //If the wm name is queried successfully the wm is compliant (source //http://standards.freedesktop.org/wm-spec/1.4/ar01s03.html#id2568282 ) //in which case we will also free() the allcoated string. if (window_manager == NULL) return FALSE; else - free(window_manager); + free(window_manager); snprintf( buf, sizeof(buf), "_NET_WM_CM_S%d", screen); atom = XInternAtom(dpy, buf, True); |