diff options
author | Denys Vlasenko | 2010-10-29 11:46:52 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-10-29 11:46:52 +0200 |
commit | fb132e47370378474c68ad22c1c0cb2ccee178de (patch) | |
tree | 4f78d0fdd1c2fa2341c7d9bb17f9d98d099a238c /procps/iostat.c | |
parent | 66cb7bed33da605674c3d24734466b8e8a60e337 (diff) | |
download | busybox-fb132e47370378474c68ad22c1c0cb2ccee178de.zip busybox-fb132e47370378474c68ad22c1c0cb2ccee178de.tar.gz |
whitespace cleanup
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'procps/iostat.c')
-rw-r--r-- | procps/iostat.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/procps/iostat.c b/procps/iostat.c index 5d82986..a9ff13a 100644 --- a/procps/iostat.c +++ b/procps/iostat.c @@ -18,14 +18,14 @@ //config: Report CPU and I/O statistics #include "libbb.h" -#include <sys/utsname.h> /* Need struct utsname */ +#include <sys/utsname.h> /* Need struct utsname */ //#define debug(fmt, ...) fprintf(stderr, fmt, ## __VA_ARGS__) #define debug(fmt, ...) ((void)0) -#define MAX_DEVICE_NAME 12 -#define CURRENT 0 -#define LAST 1 +#define MAX_DEVICE_NAME 12 +#define CURRENT 0 +#define LAST 1 #if 1 typedef unsigned long long cputime_t; @@ -327,7 +327,7 @@ static void do_disk_statistics(cputime_t itv) int i = 0; char buf[128]; unsigned major, minor; - unsigned long wr_ops, dummy; /* %*lu for suppres the conversion wouldn't work */ + unsigned long wr_ops, dummy; /* %*lu for suppress the conversion wouldn't work */ unsigned long long rd_sec_or_wr_ops; unsigned long long rd_sec_or_dummy, wr_sec_or_dummy, wr_sec; struct stats_dev sd; |