aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/options.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/options.c b/src/options.c
index 9220003..efc4169 100644
--- a/src/options.c
+++ b/src/options.c
@@ -61,7 +61,7 @@ void usage(char *executable) {
"Print a header above the columns");
fprintf(stderr, " %-25s %2s %10s - %s\n", "--reverse-sort", "", "",
"Sort reversed");
- fprintf(stderr, " %-25s %2s %10s - %s\n", "--show-hidden-entries", "-v", "",
+ fprintf(stderr, " %-25s %2s %10s - %s\n", "--show-hidden-entries", "-a", "",
"Show hidden entries in the directory");
fprintf(stderr, " %-25s %2s %10s - %s\n", "--sort-by", "", "variant",
"Sort either by size or time");
@@ -180,7 +180,7 @@ int parse_arguments(int argc, char **argv) {
while(1) {
index = 0;
- c = getopt_long(argc, argv, "Hhtv", long_options, &index);
+ c = getopt_long(argc, argv, "aHht", long_options, &index);
if (c == -1) {
break;
@@ -199,7 +199,7 @@ int parse_arguments(int argc, char **argv) {
case 't':
option_timestamp_long = true;
break;
- case 'v':
+ case 'a':
option_show_hidden_entries = true;
break;
case '?':