[<prev] [next>] [day] [month] [year] [list]
Message-Id: <E1U3o4C-0000bv-O3@babylon.few.vu.nl>
Date: Fri, 08 Feb 2013 14:32:36 +0100
From: Kees van Reeuwijk <kees.van.reeuwijk@...il.com>
To: netdev@...r.kernel.org
Subject: [PATCH v2 1/5] iproute2: add a missing return statement
From: Kees van Reeuwijk <reeuwijk@....vu.nl>
Since do_help() has to return an int to fit in the table of commands,
it should actually return an int. This patch lets it do so.
Signed-off-by: Kees van Reeuwijk <reeuwijk@....vu.nl>
---
ip.c | 1 +
diff --git a/ip/ip.c b/ip/ip.c
index 632d271..c3ff627 100644
--- a/ip/ip.c
+++ b/ip/ip.c
@@ -57,6 +57,7 @@ static void usage(void)
static int do_help(int argc, char **argv)
{
usage();
+ return 0;
}
static const struct cmd {
--
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