summaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-01-20 16:03:59 +0100
committerBert <ber.t@gmx.com>2011-01-20 16:03:59 +0100
commit45db2881e26dd5e51c0e4142bdefa2d947292c80 (patch)
treeae87d474c65f12410398a2d5808e5035daf56b5f /options.c
parentc399c1a08552393633e836219ceeef2f2b0ab5f3 (diff)
downloadnsxiv-45db2881e26dd5e51c0e4142bdefa2d947292c80.tar.zst
Fixed filenames in parse_options()
Diffstat (limited to 'options.c')
-rw-r--r--options.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/options.c b/options.c
index 5b52b66..50f2012 100644
--- a/options.c
+++ b/options.c
@@ -40,9 +40,6 @@ void print_version() {
void parse_options(int argc, char **argv) {
int opt;
- _options.filenames = (const char**) argv + 1;
- _options.filecnt = argc - 1;
-
while ((opt = getopt(argc, argv, "hv")) != -1) {
switch (opt) {
case '?':
@@ -56,4 +53,7 @@ void parse_options(int argc, char **argv) {
exit(0);
}
}
+
+ _options.filenames = (const char**) argv + optind;
+ _options.filecnt = argc - optind;
}