fixed run_command()

This commit is contained in:
Aaron Marcher 2016-09-14 18:42:51 +02:00 committed by Aaron Marcher (drkhsh)
parent ad03218fd5
commit 887b9bd3e3
1 changed files with 1 additions and 1 deletions

View 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);