From mboxrd@z Thu Jan 1 00:00:00 1970 From: Neil Horman Subject: Re: [PATCH 08/11] pmdinfogen: fix usage message Date: Thu, 7 Jul 2016 12:05:59 -0400 Message-ID: <20160707160559.GG26064@hmsreliant.think-freely.org> References: <1467905790-10597-1-git-send-email-thomas.monjalon@6wind.com> <1467905790-10597-9-git-send-email-thomas.monjalon@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org To: Thomas Monjalon Return-path: Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id 066AB11D4 for ; Thu, 7 Jul 2016 18:06:26 +0200 (CEST) Content-Disposition: inline In-Reply-To: <1467905790-10597-9-git-send-email-thomas.monjalon@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Thu, Jul 07, 2016 at 05:36:27PM +0200, Thomas Monjalon wrote: > The name of the tool is pmdinfogen. > > Fixes: 98b0fdb0ffc6 ("pmdinfogen: add buildtools and pmdinfogen utility") > > Signed-off-by: Thomas Monjalon > --- > buildtools/pmdinfogen/pmdinfogen.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/buildtools/pmdinfogen/pmdinfogen.c b/buildtools/pmdinfogen/pmdinfogen.c > index beb06f1..1b7b931 100644 > --- a/buildtools/pmdinfogen/pmdinfogen.c > +++ b/buildtools/pmdinfogen/pmdinfogen.c > @@ -398,7 +398,7 @@ int main(int argc, char **argv) > > if (argc < 3) { > fprintf(stderr, > - "usage: pmdinfo \n"); > + "usage: pmdinfogen \n"); > exit(127); > } > parse_elf(&info, argv[1]); > -- > 2.7.0 > > That should probably be an "%s...", argv[0], just to keep the name in line with whatever its run as (via the symlink for instance) Neil