summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorProsperousPotato <ProsperousPotato@users.noreply.github.com>2025-10-16 20:18:16 +0100
committerProsperousPotato <ProsperousPotato@users.noreply.github.com>2025-10-16 20:18:16 +0100
commit23a676ec641f3d098bf288527f804236a2e38d6b (patch)
tree0ff4a1f6450fc1063895c4c75c58d21c823431c1
parentfa5ced5316895b2574f2b8a2af9994f7f7ff8838 (diff)
if condition brace
-rw-r--r--dwm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/dwm.c b/dwm.c
index a54fa92..c9c1d0e 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1666,9 +1666,8 @@ setup(void)
cursor[CurMove] = drw_cur_create(drw, XC_fleur);
/* init appearance */
scheme = ecalloc(LENGTH(colors), sizeof(Clr *));
- for (i = 0; i < LENGTH(colors); i++) {
+ for (i = 0; i < LENGTH(colors); i++)
scheme[i] = drw_scm_create(drw, colors[i], 5);
- }
/* init mouse */
if (mouse_default == 0) {