From 4fbc11b6144a69756ff198dd539232c59f48603c Mon Sep 17 00:00:00 2001 From: Marco Peereboom Date: Tue, 13 Jan 2009 22:59:00 +0000 Subject: [PATCH 1/1] Missed some more spaces... --- scrotwm.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scrotwm.c b/scrotwm.c index b86d93e..1880c6a 100644 --- a/scrotwm.c +++ b/scrotwm.c @@ -117,20 +117,20 @@ TAILQ_HEAD(ws_win_list, ws_win); /* define work spaces */ #define SWM_WS_MAX (10) struct workspace { - int visible; /* workspace visible */ + int visible; /* workspace visible */ struct ws_win *focus; /* which win has focus */ - int winno; /* total nr of windows */ - struct ws_win_list winlist; + int winno; /* total nr of windows */ + struct ws_win_list winlist; } ws[SWM_WS_MAX]; int current_ws = 0; /* args to functions */ union arg { - int id; + int id; #define SWM_ARG_ID_FOCUSNEXT (0) #define SWM_ARG_ID_FOCUSPREV (1) #define SWM_ARG_ID_FOCUSMAIN (2) - char **argv; + char **argv; }; void -- 1.7.10.4