diff options
Diffstat (limited to 'util-linux/hexdump_xxd.c')
-rw-r--r-- | util-linux/hexdump_xxd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/util-linux/hexdump_xxd.c b/util-linux/hexdump_xxd.c index 37e58f2d0..6cf6d0297 100644 --- a/util-linux/hexdump_xxd.c +++ b/util-linux/hexdump_xxd.c | |||
@@ -73,8 +73,9 @@ int xxd_main(int argc UNUSED_PARAM, char **argv) | |||
73 | #define OPT_s (1 << 1) | 73 | #define OPT_s (1 << 1) |
74 | #define OPT_a (1 << 2) | 74 | #define OPT_a (1 << 2) |
75 | #define OPT_p (1 << 3) | 75 | #define OPT_p (1 << 3) |
76 | opt_complementary = "?1"; /* 1 argument max */ | 76 | opt = getopt32(argv, "^" "l:s:apg:+c:+" "\0" "?1" /* 1 argument max */, |
77 | opt = getopt32(argv, "l:s:apg:+c:+", &opt_l, &opt_s, &bytes, &cols); | 77 | &opt_l, &opt_s, &bytes, &cols |
78 | ); | ||
78 | argv += optind; | 79 | argv += optind; |
79 | 80 | ||
80 | dumper->dump_vflag = ALL; | 81 | dumper->dump_vflag = ALL; |