diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-01-25 03:07:39 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-01-25 03:07:39 +0100 |
commit | 8a2657cbf5fe005914cf58836d2599e65e6c3e34 (patch) | |
tree | 22b387329acd579d019175e92bbcdf9c671ec568 /util-linux/hexdump_xxd.c | |
parent | 0f4364775fbc0b716024d5211325045c40b431c9 (diff) | |
download | busybox-w32-8a2657cbf5fe005914cf58836d2599e65e6c3e34.tar.gz busybox-w32-8a2657cbf5fe005914cf58836d2599e65e6c3e34.tar.bz2 busybox-w32-8a2657cbf5fe005914cf58836d2599e65e6c3e34.zip |
hexdump/xxd: a bit more condensed formats
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/hexdump_xxd.c')
-rw-r--r-- | util-linux/hexdump_xxd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/hexdump_xxd.c b/util-linux/hexdump_xxd.c index 3a7e64bb9..813e7fe57 100644 --- a/util-linux/hexdump_xxd.c +++ b/util-linux/hexdump_xxd.c | |||
@@ -125,7 +125,7 @@ int xxd_main(int argc UNUSED_PARAM, char **argv) | |||
125 | free(bigbuf); | 125 | free(bigbuf); |
126 | } | 126 | } |
127 | 127 | ||
128 | sprintf(buf, "\" \" %u/1 \"%%_p\" \"\n\"", cols); // " ASCII\n" | 128 | sprintf(buf, "\" \"%u/1 \"%%_p\"\"\n\"", cols); // " ASCII\n" |
129 | bb_dump_add(dumper, buf); | 129 | bb_dump_add(dumper, buf); |
130 | 130 | ||
131 | return bb_dump_dump(dumper, argv); | 131 | return bb_dump_dump(dumper, argv); |