Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2022-08-30 17:41:17 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2022-08-30 17:41:17 +0300
commitfe73c8d55795a8fe7e95fc2c00af6899817b96b8 (patch)
tree1b772243f00c63d16ee4cf8bf6f80a6c7a53ee91 /procps
parent58598eb7093561d914a6254697e137b815f1fdfc (diff)
*: style fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'procps')
-rw-r--r--procps/nmeter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/nmeter.c b/procps/nmeter.c
index 088d366bf..68e6f3325 100644
--- a/procps/nmeter.c
+++ b/procps/nmeter.c
@@ -515,7 +515,7 @@ static void FAST_FUNC collect_blk(blk_stat *s)
return;
}
- for (i=0; i<2; i++) {
+ for (i = 0; i < 2; i++) {
ullong old = s->old[i];
if (data[i] < old) old = data[i]; //sanitize
s->old[i] = data[i];
@@ -597,7 +597,7 @@ static void FAST_FUNC collect_if(if_stat *s)
return;
}
- for (i=0; i<4; i++) {
+ for (i = 0; i < 4; i++) {
ullong old = s->old[i];
if (data[i] < old) old = data[i]; //sanitize
s->old[i] = data[i];