From: Aaron Marcher Date: Wed, 14 Sep 2016 16:42:51 +0000 (+0200) Subject: fixed run_command() X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=887b9bd3e37304d469845454f390cbf13198799d;p=suckless%2Fslstatus.git fixed run_command() --- diff --git a/slstatus.c b/slstatus.c index a13bf3b..7dee542 100644 --- a/slstatus.c +++ b/slstatus.c @@ -407,7 +407,7 @@ static char * run_command(const char* command) { FILE *fp = popen(command, "r"); - char buffer[64] = '\0'; + char buffer[64] = "\0"; if (fp == NULL) { warn("Could not get command output for: %s", command);