From ecd5e7108cf515898a04c848b17234a5e3ee6179 Mon Sep 17 00:00:00 2001 From: Bert Date: Mon, 11 Apr 2011 21:27:20 +0200 Subject: Renamed option -C -> -c --- options.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'options.c') diff --git a/options.c b/options.c index 5e0bce7..0644363 100644 --- a/options.c +++ b/options.c @@ -31,7 +31,7 @@ options_t _options; const options_t *options = (const options_t*) &_options; void print_usage() { - printf("usage: sxiv [-CdFfhpqrstvZ] [-g GEOMETRY] [-z ZOOM] FILES...\n"); + printf("usage: sxiv [-cdFfhpqrstvZ] [-g GEOMETRY] [-z ZOOM] FILES...\n"); } void print_version() { @@ -55,12 +55,12 @@ void parse_options(int argc, char **argv) { _options.clean_cache = 0; _options.recursive = 0; - while ((opt = getopt(argc, argv, "CdFfg:hpqrstvZz:")) != -1) { + while ((opt = getopt(argc, argv, "cdFfg:hpqrstvZz:")) != -1) { switch (opt) { case '?': print_usage(); exit(1); - case 'C': + case 'c': _options.clean_cache = 1; break; case 'd': -- cgit v1.2.3