/alps/ufodecode

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/ufodecode

« back to all changes in this revision

Viewing changes to test/ipedec.c

  • Committer: Matthias Vogelgesang
  • Date: 2012-05-30 14:30:19 UTC
  • Revision ID: matthias.vogelgesang@kit.edu-20120530143019-tj7kaljp7olmlekr
clear-frame does not expect an argument

Fix problem that ipedec eats one filename after supplying "-c" or
"--clear-frame".

Show diffs side-by-side

added added

removed removed

Lines of Context:
124
124
        return 0;
125
125
    }
126
126
 
127
 
    while ((getopt_ret = getopt_long(argc, (char *const *) argv, "r:c:h", long_options, &index)) != -1) {
 
127
    while ((getopt_ret = getopt_long(argc, (char *const *) argv, "r:ch", long_options, &index)) != -1) {
128
128
        switch (getopt_ret) {
129
129
            case 'r': 
130
130
                rows = atoi(optarg);