slstatus

Unnamed repository; edit this file 'description' to name the repository.
git clone https://git.beauhilton.com/slstatus.git
Log | Files | Refs | README | LICENSE

commit 887b9bd3e37304d469845454f390cbf13198799d
parent ad03218fd54e01d612b19a0a569f440131cd5800
Author: Aaron Marcher <info@nulltime.net>
Date:   Wed, 14 Sep 2016 18:42:51 +0200

fixed run_command()

Diffstat:
Mslstatus.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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);