aboutsummaryrefslogtreecommitdiff
path: root/util-linux/hexdump.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/hexdump.c')
-rw-r--r--util-linux/hexdump.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c
index 12f540a53..136243122 100644
--- a/util-linux/hexdump.c
+++ b/util-linux/hexdump.c
@@ -11,7 +11,6 @@
11 11
12#include "busybox.h" 12#include "busybox.h"
13#include <getopt.h> 13#include <getopt.h>
14#include <string.h>
15#include "dump.h" 14#include "dump.h"
16 15
17static void bb_dump_addfile(char *name) 16static void bb_dump_addfile(char *name)
@@ -20,7 +19,7 @@ static void bb_dump_addfile(char *name)
20 FILE *fp; 19 FILE *fp;
21 char *buf; 20 char *buf;
22 21
23 fp = bb_xfopen(name, "r"); 22 fp = xfopen(name, "r");
24 23
25 while ((buf = bb_get_chomped_line_from_file(fp)) != NULL) { 24 while ((buf = bb_get_chomped_line_from_file(fp)) != NULL) {
26 p = skip_whitespace(buf); 25 p = skip_whitespace(buf);