From b3de92bd906f0a9839bac57426be253b864c6e3d Mon Sep 17 00:00:00 2001 From: isaac Date: Thu, 5 Mar 2009 17:25:10 +0000 Subject: [PATCH] - corrected order of items in the 1st line of output of routerstat. --- lnet/utils/routerstat.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lnet/utils/routerstat.c b/lnet/utils/routerstat.c index 0d59dfc..e518022 100644 --- a/lnet/utils/routerstat.c +++ b/lnet/utils/routerstat.c @@ -130,11 +130,11 @@ do_stat (int fd) if (last == 0.0) { printf ("M %lu(%lu) E %lu S %lu/%llu R %lu/%llu F %lu/%llu D %lu/%llu\n", new_counter.msgs_alloc, new_counter.msgs_max, - new_counter.errors, - new_counter.send_count, new_counter.send_length, - new_counter.recv_count, new_counter.recv_length, - new_counter.route_count, new_counter.route_length, - new_counter.drop_count, new_counter.drop_length); + new_counter.errors, + new_counter.send_length, new_counter.send_count, + new_counter.recv_length, new_counter.recv_count, + new_counter.route_length, new_counter.route_count, + new_counter.drop_length, new_counter.drop_count); } else { t = now - last; -- 1.8.3.1