]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
ip: macvlan style cleanup
authorStephen Hemminger <stephen@networkplumber.org>
Wed, 12 Oct 2016 22:23:27 +0000 (15:23 -0700)
committerStephen Hemminger <stephen@networkplumber.org>
Wed, 12 Oct 2016 22:23:27 +0000 (15:23 -0700)
breaklong lines.

ip/iplink_macvlan.c

index d0f2f3df8541d86f2728e224324db4f443a01a1c..2adfc098d571a885131c4134a0e5c46986957898 100644 (file)
@@ -46,14 +46,16 @@ static void explain(struct link_util *lu)
 
 static int mode_arg(const char *arg)
 {
-       fprintf(stderr, "Error: argument of \"mode\" must be \"private\", \"vepa\", \"bridge\", \"passthru\" or \"source\", not \"%s\"\n",
+       fprintf(stderr,
+               "Error: argument of \"mode\" must be \"private\", \"vepa\", \"bridge\", \"passthru\" or \"source\", not \"%s\"\n",
                arg);
        return -1;
 }
 
 static int flag_arg(const char *arg)
 {
-       fprintf(stderr, "Error: argument of \"flag\" must be \"nopromisc\", \"unicast\", \"unicast_all\" or \"null\", not \"%s\"\n",
+       fprintf(stderr,
+               "Error: argument of \"flag\" must be \"nopromisc\", \"unicast\", \"unicast_all\" or \"null\", not \"%s\"\n",
                arg);
        return -1;
 }