Procházet zdrojové kódy

Merge pull request #43 from SiIky/unknown_str

Print unknown_str in case of error
master
Aaron Marcher před 6 roky
committed by GitHub
rodič
revize
ff65c4a413
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. +3
    -1
      slstatus.c

+ 3
- 1
slstatus.c Zobrazit soubor

@@ -87,8 +87,10 @@ main(int argc, char *argv[])

status[0] = '\0';
for (i = len = 0; i < LEN(args); i++) {
const char * res = args[i].func(args[i].args);
res = (res == NULL) ? unknown_str : res;
len += snprintf(status + len, sizeof(status) - len,
args[i].fmt, args[i].func(args[i].args));
args[i].fmt, res);

if (len >= sizeof(status)) {
status[sizeof(status) - 1] = '\0';


Načítá se…
Zrušit
Uložit