diff options
author | torrinfail <torrinfail@gmail.com> | 2020-08-27 06:51:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-27 06:51:30 +0000 |
commit | 3d308cafb0f3a56e9247e6a9aaf9da6e279a5bc6 (patch) | |
tree | 1847f9332cab9d08eac79c7345e922f32937c464 /dwmblocks.c | |
parent | 500b1fbb0f5d91f80f6f86067f898c72f4b2aa58 (diff) | |
parent | d581dae18025f141d401747b8265fa9c84e8445a (diff) |
Merge pull request #29 from keikari/patch-2
Fix, delimLen caused weird behaviour
Diffstat (limited to 'dwmblocks.c')
-rw-r--r-- | dwmblocks.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dwmblocks.c b/dwmblocks.c index b6f696f..e3e34a1 100644 --- a/dwmblocks.c +++ b/dwmblocks.c @@ -178,7 +178,8 @@ int main(int argc, char** argv) else if (!strcmp("-p",argv[i])) writestatus = pstdout; } - delim[MIN(delimLen, strlen(delim))] = '\0'; + delimLen = MIN(delimLen, strlen(delim)); + delim[delimLen++] = '\0'; signal(SIGTERM, termhandler); signal(SIGINT, termhandler); statusloop(); |