From 18c4d844649c8c1db2a0c15e0c067fd9209ddf3d Mon Sep 17 00:00:00 2001 From: speediegq Date: Tue, 18 Oct 2022 17:45:32 +0200 Subject: [PATCH] these don't need to be unsigned either, in fact values less than 0 might break them --- options.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/options.h b/options.h index 07380df..6cda06c 100644 --- a/options.h +++ b/options.h @@ -228,12 +228,12 @@ static int statusallmons = 1; /* Draw status bar on all mon /* Layout options * * Monocle layout */ -static unsigned int monocleclientcount = 0; /* Display client count in the Monocle layout */ -static unsigned int monoclecount = 0; /* Display focused client and number of total clients in the Monocle layout */ +static int monocleclientcount = 0; /* Display client count in the Monocle layout */ +static int monoclecount = 0; /* Display focused client and number of total clients in the Monocle layout */ static char monocleformat[] = "[%d/%d]"; /* Format of the monocle count. Unsigned integer monoclecount must be set to 1 for this to be used. */ /* Deck layout */ -static unsigned int deckcount = 0; /* Display deck count in the deck layout */ +static int deckcount = 0; /* Display deck count in the deck layout */ static char deckformat[] = "[%d]"; /* Format of the deck count. deckcount must be set to 1 for this to be used. */ /* Dynamic Grid layout */