diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-09-06 12:59:48 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-09-06 12:59:48 +0200 |
commit | dc57294485068e644714804ad1b1a3a10c4fceec (patch) | |
tree | 785d53ebeee2b09873c3073c8b34ebf93229b195 | |
parent | a407cf74cc43c3cc26168e259cee469a4787a76c (diff) | |
download | busybox-w32-dc57294485068e644714804ad1b1a3a10c4fceec.tar.gz busybox-w32-dc57294485068e644714804ad1b1a3a10c4fceec.tar.bz2 busybox-w32-dc57294485068e644714804ad1b1a3a10c4fceec.zip |
top: fix breakage introduced by previous commit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | procps/top.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/top.c b/procps/top.c index a13a41cd8..31f2a5113 100644 --- a/procps/top.c +++ b/procps/top.c | |||
@@ -847,7 +847,7 @@ static void display_topmem_header(int scr_width, int *lines_rem_p) | |||
847 | static void ulltoa6_and_space(unsigned long long ul, char buf[6]) | 847 | static void ulltoa6_and_space(unsigned long long ul, char buf[6]) |
848 | { | 848 | { |
849 | /* see http://en.wikipedia.org/wiki/Tera */ | 849 | /* see http://en.wikipedia.org/wiki/Tera */ |
850 | smart_ulltoa5(ul, buf, " mgtpezy")[0] = '\0'; | 850 | smart_ulltoa5(ul, buf, " mgtpezy")[0] = ' '; |
851 | } | 851 | } |
852 | 852 | ||
853 | static NOINLINE void display_topmem_process_list(int lines_rem, int scr_width) | 853 | static NOINLINE void display_topmem_process_list(int lines_rem, int scr_width) |