wmifs: Don't ignore geometry strings beginning with '-'.
This commit is contained in:
parent
a332db862a
commit
9601a58aae
|
@ -348,8 +348,10 @@ int main(int argc, char *argv[])
|
|||
WaveForm = 1;
|
||||
break;
|
||||
default:
|
||||
usage();
|
||||
exit(0);
|
||||
if (strcmp(argv[i-1], "-geometry")) {
|
||||
usage();
|
||||
exit(0);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue