[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1397785199-1470-1-git-send-email-akong@redhat.com>
Date: Fri, 18 Apr 2014 09:39:59 +0800
From: Amos Kong <akong@...hat.com>
To: netdev@...r.kernel.org
Cc: bwh@...nel.org
Subject: [PATCH] ethtool: fix a typo in displaying channel parameters
# ethtool -L eth0 combined 1
combined unmodified, ignoring
no channel parameters changed, aborting
current values: tx 0 rx 0 other 0combined 1
^^^^
Signed-off-by: Amos Kong <akong@...hat.com>
---
ethtool.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ethtool.c b/ethtool.c
index acb4397..4c75653 100644
--- a/ethtool.c
+++ b/ethtool.c
@@ -1764,7 +1764,7 @@ static int do_schannels(struct cmd_context *ctx)
if (!changed) {
fprintf(stderr, "no channel parameters changed, aborting\n");
fprintf(stderr, "current values: tx %u rx %u other %u"
- "combined %u\n", echannels.rx_count,
+ " combined %u\n", echannels.rx_count,
echannels.tx_count, echannels.other_count,
echannels.combined_count);
return 1;
--
1.9.0
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists