Cleanup: consumerd: lines over 80 columns
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 18 Dec 2014 01:45:20 +0000 (20:45 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 7 Jan 2015 20:42:20 +0000 (15:42 -0500)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/bin/lttng-consumerd/lttng-consumerd.c

index d2c3ed4ed605174aa2d0f4e0b12afc0c39b0dfee..d0d83988c7beceb6d3196d523260b55feb0a30a9 100644 (file)
@@ -206,14 +206,16 @@ static int parse_args(int argc, char **argv)
 
        while (1) {
                int option_index = 0;
 
        while (1) {
                int option_index = 0;
-               c = getopt_long(argc, argv, "dhqvVku" "c:e:g:", long_options, &option_index);
+               c = getopt_long(argc, argv, "dhqvVku" "c:e:g:",
+                               long_options, &option_index);
                if (c == -1) {
                        break;
                }
 
                switch (c) {
                case 0:
                if (c == -1) {
                        break;
                }
 
                switch (c) {
                case 0:
-                       fprintf(stderr, "option %s", long_options[option_index].name);
+                       fprintf(stderr, "option %s",
+                               long_options[option_index].name);
                        if (optarg) {
                                fprintf(stderr, " with arg %s\n", optarg);
                                ret = -1;
                        if (optarg) {
                                fprintf(stderr, " with arg %s\n", optarg);
                                ret = -1;
This page took 0.025019 seconds and 4 git commands to generate.