[tuxdroid-svn] r387 - firmware/tuxup/trunk
Status: Beta
Brought to you by:
ks156
From: neimad <c2m...@c2...> - 2007-06-17 10:48:35
|
Author: neimad Date: 2007-06-17 12:48:31 +0200 (Sun, 17 Jun 2007) New Revision: 387 Modified: firmware/tuxup/trunk/main.c Log: * Aligned entries of long options array for better readability. Modified: firmware/tuxup/trunk/main.c =================================================================== --- firmware/tuxup/trunk/main.c 2007-06-17 10:44:45 UTC (rev 386) +++ firmware/tuxup/trunk/main.c 2007-06-17 10:48:31 UTC (rev 387) @@ -479,13 +479,13 @@ /* An array describing valid long options. */ const struct option long_options[] = { - {"main", 0, NULL, 'm'}, - {"all", 0, NULL, 'a'}, + {"main", 0, NULL, 'm'}, + {"all", 0, NULL, 'a'}, {"pretend", 0, NULL, 'p'}, - {"help", 0, NULL, 'h'}, + {"help", 0, NULL, 'h'}, {"verbose", 0, NULL, 'v'}, {"version", 0, NULL, 'V'}, - {NULL, 0, NULL, 0} /* Required at end of array. */ + {NULL, 0, NULL, 0} /* Required at end of array. */ }; /* Remember the name of the program, to incorporate in messages. |