From 5112f91c48fc40f74d3df193bebfab37e46c8aa6 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 13 Sep 2012 00:39:43 -0500 Subject: [PATCH] whitespace --- src/compton.c | 4 ++-- src/compton.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/compton.c b/src/compton.c index c2d4a221a8..6ec0e17449 100644 --- a/src/compton.c +++ b/src/compton.c @@ -1693,7 +1693,7 @@ void calc_opacity(Display *dpy, win *w, Bool refetch_prop) { if (OPAQUE != win_type_opacity[w->window_type]) opacity = win_type_opacity[w->window_type] * OPAQUE; } - + // Respect inactive_opacity in some cases if (inactive_opacity && IS_NORMAL_WIN(w) && False == w->focused && (OPAQUE == opacity || inactive_opacity_override)) @@ -1845,7 +1845,7 @@ restack_win(Display *dpy, win *w, Window new_above) { char *window_name; Bool to_free; win* c = list; - + printf("restack_win(%#010lx, %#010lx): Window stack modified. Current stack:\n", w->id, new_above); for (; c; c = c->next) { window_name = "(Failed to get title)"; diff --git a/src/compton.h b/src/compton.h index c85992bb52..f4bccd4b53 100644 --- a/src/compton.h +++ b/src/compton.h @@ -197,12 +197,12 @@ static inline Bool array_wid_exists(const Window *arr, if (arr[count] == wid) return True; } - + return False; } #ifdef DEBUG_EVENTS -/* +/* * Subtracting two struct timeval values. * * Taken from glibc manual.