i3lock-color

The world's most popular non-default computer lockscreen.
Index Commits Files Refs README LICENSE
commit c91afea4f67b0f7972132103697164dc3bb7a755
parent 7668ccea3b4f73806b676a6864faaf5f7406701f
Author: Raymond Li <hi@raymond.li>
Date:   Wed, 27 Jul 2022 12:56:10 -0400

Fix inconsistent (date|time)_format length

Fixes #266
Caused by f2d155 when I accidentally made these 64 as well when I meant to only do the fonts

Diffstat:
Mi3lock.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/i3lock.c b/i3lock.c
@@ -134,8 +134,8 @@ int layout_align = 0;
 int modif_align = 0;
 int greeter_align = 0;
 
-char time_format[64] = "%H:%M:%S\0";
-char date_format[64] = "%A, %m %Y\0";
+char time_format[32] = "%H:%M:%S\0";
+char date_format[32] = "%A, %m %Y\0";
 
 char verif_font[64] = "sans-serif\0";
 char wrong_font[64] = "sans-serif\0";