diff options
Diffstat (limited to 'util-linux/hexdump.c')
-rw-r--r-- | util-linux/hexdump.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c index 12f540a..1362431 100644 --- a/util-linux/hexdump.c +++ b/util-linux/hexdump.c @@ -11,7 +11,6 @@ #include "busybox.h" #include <getopt.h> -#include <string.h> #include "dump.h" static void bb_dump_addfile(char *name) @@ -20,7 +19,7 @@ static void bb_dump_addfile(char *name) FILE *fp; char *buf; - fp = bb_xfopen(name, "r"); + fp = xfopen(name, "r"); while ((buf = bb_get_chomped_line_from_file(fp)) != NULL) { p = skip_whitespace(buf); |