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
This commit is contained in:
Raymond Li 2022-07-27 12:56:10 -04:00
parent 7668ccea3b
commit c91afea4f6
No known key found for this signature in database
GPG Key ID: A014EA89B62BBB1B
1 changed files with 2 additions and 2 deletions

View File

@ -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";