netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Amos Kong <akong@redhat.com>
To: netdev@vger.kernel.org
Cc: bwh@kernel.org
Subject: [PATCH] ethtool: fix a typo in displaying channel parameters
Date: Fri, 18 Apr 2014 09:39:59 +0800	[thread overview]
Message-ID: <1397785199-1470-1-git-send-email-akong@redhat.com> (raw)

 # 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@redhat.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

             reply	other threads:[~2014-04-18  2:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-18  1:39 Amos Kong [this message]
2014-04-21 21:36 ` [PATCH] ethtool: fix a typo in displaying channel parameters Ben Hutchings

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1397785199-1470-1-git-send-email-akong@redhat.com \
    --to=akong@redhat.com \
    --cc=bwh@kernel.org \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).