Skip to content

Commit

Permalink
Fix session-export --samplerate option
Browse files Browse the repository at this point in the history
  • Loading branch information
x42 committed Aug 6, 2017
1 parent 0a67b16 commit d98b722
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions session_utils/export.cc
Original file line number Diff line number Diff line change
Expand Up @@ -172,13 +172,13 @@ int main (int argc, char* argv[])
std::string outfile;
bool normalize = false;

const char *optstring = "hno:r:V";
const char *optstring = "hno:s:V";

const struct option longopts[] = {
{ "help", 0, 0, 'h' },
{ "normalize", 0, 0, 'n' },
{ "output", 1, 0, 'o' },
{ "samplerate", 1, 0, 'r' },
{ "samplerate", 1, 0, 's' },
{ "version", 0, 0, 'V' },
};

Expand Down

0 comments on commit d98b722

Please sign in to comment.