mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
minor bug fix in argc checking
This commit is contained in:
@@ -427,7 +427,7 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
static const char * const usage = "usage: test_seeking file.flac [#seeks]\n";
|
static const char * const usage = "usage: test_seeking file.flac [#seeks]\n";
|
||||||
|
|
||||||
if (argc < 1 || argc > 3) {
|
if (argc < 2 || argc > 3) {
|
||||||
fprintf(stderr, usage);
|
fprintf(stderr, usage);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user