defconfig: update

appletli.c: add vda's (C)
top: fixlet for incorrect display of "0"
Makefile: reduce stack size from 20k to 16k
This commit is contained in:
Denis Vlasenko
2007-12-24 12:16:24 +00:00
parent e4bc603f0b
commit fcfb5c04bb
4 changed files with 15 additions and 9 deletions

View File

@@ -636,7 +636,7 @@ static void display_topmem_header(int scr_width)
}
fclose(fp);
#define S(s) (s ? s : "0")
#define S(s) (s ? s : "0 ")
snprintf(linebuf, sizeof(linebuf),
"Mem %stotal %sanon %smap %sfree",
S(total), S(anon), S(map), S(mfree));