fixed run_command()
authorAaron Marcher <info@nulltime.net>
Wed, 14 Sep 2016 16:42:51 +0000 (18:42 +0200)
committerAaron Marcher (drkhsh) <info@nulltime.net>
Wed, 14 Sep 2016 16:42:51 +0000 (18:42 +0200)
slstatus.c

index a13bf3be2e5c1c13b3cc8762931824f4615f628b..7dee542ff9a48cff5fbce3c35141a721b2a18d62 100644 (file)
@@ -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);