avoid duplication of common stuff in getopt options strings

this is supposed to improve merging

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@3816 0c269be4-1314-0410-8aa9-9f06e86f4224
This commit is contained in:
nedko 2009-11-19 12:35:48 +00:00
parent 1614542915
commit c9bbc68a8d
1 changed files with 3 additions and 3 deletions

View File

@ -178,11 +178,11 @@ int main(int argc, char* argv[])
jackctl_driver_t * loopback_driver_ctl;
int replace_registry = 0;
const char *options = "-ad:X:P:uvshVrRL:STFl:t:mn:p:L:"
#ifdef __linux__
const char *options = "-ad:X:P:uvshVrRL:STFl:t:mn:p:c:L:";
#else
const char *options = "-ad:X:P:uvshVrRL:STFl:t:mn:p:L:";
"c:"
#endif
;
struct option long_options[] = {
#ifdef __linux__