Parcourir la source

Fix formatting for travis

Marc Di Luzio il y a 5 ans
Parent
commit
7f196cdd1a
1 fichiers modifiés avec 7 ajouts et 6 suppressions
  1. 7 6
      daemon/main.c

+ 7 - 6
daemon/main.c

@@ -108,12 +108,13 @@ int main(int argc, char *argv[])
 	int opt = 0;
 
 	/* Options struct for getopt_long */
-	static struct option long_options[] = {
-		{ "daemonize", no_argument, 0, 'd' },     { "log-to-syslog", no_argument, 0, 'l' },
-		{ "request", optional_argument, 0, 'r' }, { "test", no_argument, 0, 't' },
-		{ "status", optional_argument, 0, 's' },  { "help", no_argument, 0, 'h' },
-		{ "version", no_argument, 0, 'v' }
-	};
+	static struct option long_options[] = { { "daemonize", no_argument, 0, 'd' },
+		                                    { "log-to-syslog", no_argument, 0, 'l' },
+		                                    { "request", optional_argument, 0, 'r' },
+		                                    { "test", no_argument, 0, 't' },
+		                                    { "status", optional_argument, 0, 's' },
+		                                    { "help", no_argument, 0, 'h' },
+		                                    { "version", no_argument, 0, 'v' } };
 	static const char *short_options = "dls::r::tvh";
 
 	while ((opt = getopt_long(argc, argv, short_options, long_options, 0)) != -1) {