aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2024-12-30 09:39:55 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2024-12-30 09:39:55 +0530
commitc39d821bd542de077e37421e34c6a8c22e48f584 (patch)
treef238307ad2e25cb1dc065d212b084a7f33e0866c /config.def.h
parentae3f4629fd0d5c19c6dcab24fddfdbbe93562e72 (diff)
config: Fix initialization of 'unsigned int' from 'void *' makes integer
from pointer without a cast
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 8738ca1..66a26ea 100644
--- a/config.def.h
+++ b/config.def.h
@@ -41,7 +41,7 @@ static const char *const autostart[] = {
/* NOTE: ALWAYS keep a rule declared even if you don't use rules (e.g leave at least one example) */
static const Rule rules[] = {
/* app_id title tags mask isfloating monitor */
- { NULL, "float", NULL, 1, -1 }
+ { NULL, "float", (unsigned int) NULL, 1, -1 }
};
/* layout(s) */