From c39d821bd542de077e37421e34c6a8c22e48f584 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Mon, 30 Dec 2024 09:39:55 +0530 Subject: config: Fix initialization of 'unsigned int' from 'void *' makes integer from pointer without a cast --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config.def.h') 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) */ -- cgit v1.2.3