these don't need to be unsigned either, in fact values less than 0

might break them
This commit is contained in:
speediegq 2022-10-18 17:45:32 +02:00
parent d4074b9cfc
commit 18c4d84464

View file

@ -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 */