From 3d9ed32226679114eb130e53e76115c6560821ca Mon Sep 17 00:00:00 2001 From: okan Date: Sun, 15 May 2011 17:58:47 +0000 Subject: [PATCH] fix botched client and group cycle defines; noticed by Thomas Pfaff. "no cookie! fix it" - oga@ --- app/cwm/calmwm.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/cwm/calmwm.h b/app/cwm/calmwm.h index d2218b6df..b8734063b 100644 --- a/app/cwm/calmwm.h +++ b/app/cwm/calmwm.h @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: calmwm.h,v 1.125 2011/05/11 13:53:51 okan Exp $ + * $OpenBSD: calmwm.h,v 1.126 2011/05/15 17:58:47 okan Exp $ */ #ifndef _CALMWM_H_ @@ -68,12 +68,12 @@ #define CWM_EXEC_WM 0x0002 /* client cycle */ -#define CWM_CYCLE 0x0001 -#define CWM_RCYCLE 0x0002 +#define CWM_CYCLE 0 +#define CWM_RCYCLE 1 /* group cycle */ -#define CWM_CYCLEGROUP 0x0001 -#define CWM_RCYCLEGROUP 0x0002 +#define CWM_CYCLEGROUP 0 +#define CWM_RCYCLEGROUP 1 #define KBTOGROUP(X) ((X) - 1)