all repos — slstatus @ 8e25af7dc33bdcc0df6f4f173da7a2f883141d70

my build of slstatus (tools.suckless.org/slstatus/)

Add blank line after setlocale

setlocale() has to be separated from the signal handling.
Aaron Marcher me@drkhsh.at
Sat, 16 Sep 2017 14:11:49 +0200
commit

8e25af7dc33bdcc0df6f4f173da7a2f883141d70

parent

fb1f1dea2e8e4d11f3e213d18c2b03fd76751255

1 files changed, 1 insertions(+), 0 deletions(-)

jump to
M slstatus.cslstatus.c

@@ -843,6 +843,7 @@ usage();

} setlocale(LC_ALL, ""); + memset(&act, 0, sizeof(act)); act.sa_handler = terminate; sigaction(SIGINT, &act, NULL);