Fix syntax error in example program.

This commit is contained in:
Michael Kerrisk 2007-10-03 06:25:23 +00:00
parent d314dbfda1
commit fbbfa7ce8a
1 changed files with 1 additions and 1 deletions

View File

@ -523,7 +523,7 @@ main(int argc, char *argv[])
size_t length;
ssize_t s;
if (argc < 3 || argc > 4) == 0) {
if (argc < 3 || argc > 4) {
fprintf(stderr, "%s file offset [length]\\n", argv[0]);
exit(EXIT_FAILURE);
}