Browse Source

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
tags/v1.9.4
nedko 16 years ago
parent
commit
c9bbc68a8d
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      common/Jackdmp.cpp

+ 3
- 3
common/Jackdmp.cpp 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__


Loading…
Cancel
Save