Fixed -z option argument parsing; fixes issue #127
This commit is contained in:
parent
ed69b483ed
commit
03b1d7cf7a
2 changed files with 2 additions and 2 deletions
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
|||
VERSION = git-20140111
|
||||
VERSION = git-20140115
|
||||
|
||||
PREFIX = /usr/local
|
||||
MANPREFIX = $(PREFIX)/share/man
|
||||
|
|
|
@ -147,7 +147,7 @@ void parse_options(int argc, char **argv)
|
|||
break;
|
||||
case 'z':
|
||||
n = strtol(optarg, &end, 0);
|
||||
if (*end != '\n' || n <= 0) {
|
||||
if (*end != '\0' || n <= 0) {
|
||||
fprintf(stderr, "sxiv: invalid argument for option -z: %s\n", optarg);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue