Browse Source

do not exit on failed smprintf

master
Aaron Marcher 7 years ago
committed by Aaron Marcher (drkhsh)
parent
commit
db07244cb8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      slstatus.c

+ 1
- 1
slstatus.c View File

@@ -90,7 +90,7 @@ smprintf(const char *fmt, ...)
ret = malloc(++len);
if (ret == NULL) {
warn("Malloc failed.");
exit(1);
return "n/a";
}

va_start(ap, fmt);


Loading…
Cancel
Save