From: keikari <34790748+keikari@users.noreply.github.com> Date: Sat, 15 Aug 2020 18:43:18 +0000 (+0300) Subject: Small fix X-Git-Url: https://git.danieliu.xyz/?p=dwmblocks.git;a=commitdiff_plain;h=0bd457557437834bb21d48ac80a1e6413540d8ab Small fix delimLen didn't count in null-terminator. On line 62 the null terminator character doesn't get copied. --- diff --git a/dwmblocks.c b/dwmblocks.c index e3ac034..63d1547 100644 --- a/dwmblocks.c +++ b/dwmblocks.c @@ -178,7 +178,7 @@ int main(int argc, char** argv) else if(!strcmp("-p",argv[i])) writestatus = pstdout; } - delim[MIN(delimLen, strlen(delim))] = '\0'; + delim[MIN(delimLen++, strlen(delim))] = '\0'; signal(SIGTERM, termhandler); signal(SIGINT, termhandler); statusloop();