From: Luca Lemmo Date: Wed, 16 Mar 2016 16:56:14 +0000 (+0100) Subject: tc: q_{codel,fq_codel}: add missing space in help text X-Git-Tag: v4.6.0~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4733b18a5e69bde4844bfa5810afb42af379b6ee;p=thirdparty%2Fiproute2.git tc: q_{codel,fq_codel}: add missing space in help text Signed-off-by: Luca Lemmo --- diff --git a/tc/q_codel.c b/tc/q_codel.c index c24246c5c..cff609e8e 100644 --- a/tc/q_codel.c +++ b/tc/q_codel.c @@ -53,7 +53,7 @@ static void explain(void) { - fprintf(stderr, "Usage: ... codel [ limit PACKETS ] [ target TIME]\n"); + fprintf(stderr, "Usage: ... codel [ limit PACKETS ] [ target TIME ]\n"); fprintf(stderr, " [ interval TIME ] [ ecn | noecn ]\n"); fprintf(stderr, " [ ce_threshold TIME ]\n"); } diff --git a/tc/q_fq_codel.c b/tc/q_fq_codel.c index 4f747ebdf..0392c64fe 100644 --- a/tc/q_fq_codel.c +++ b/tc/q_fq_codel.c @@ -51,7 +51,7 @@ static void explain(void) { fprintf(stderr, "Usage: ... fq_codel [ limit PACKETS ] [ flows NUMBER ]\n"); - fprintf(stderr, " [ target TIME] [ interval TIME ]\n"); + fprintf(stderr, " [ target TIME ] [ interval TIME ]\n"); fprintf(stderr, " [ quantum BYTES ] [ [no]ecn ]\n"); fprintf(stderr, " [ ce_threshold TIME ]\n"); }