summaryrefslogtreecommitdiffstats
path: root/text-utils/hexdump-parse.c
diff options
context:
space:
mode:
authorOndrej Oprala2013-11-08 17:13:08 +0100
committerKarel Zak2013-12-02 13:44:20 +0100
commit9fa53cebe40dd54184c7e00ab32ee6f5fb6839a6 (patch)
tree42867ff12b9f0638fc536959ef7c0a3a85edd266 /text-utils/hexdump-parse.c
parenthexdump: Merge hexsyntax.c into hexdump.c (diff)
downloadkernel-qcow2-util-linux-9fa53cebe40dd54184c7e00ab32ee6f5fb6839a6.tar.gz
kernel-qcow2-util-linux-9fa53cebe40dd54184c7e00ab32ee6f5fb6839a6.tar.xz
kernel-qcow2-util-linux-9fa53cebe40dd54184c7e00ab32ee6f5fb6839a6.zip
hexdump: rename add to add_fmt
Signed-off-by: Ondrej Oprala <ooprala@redhat.com>
Diffstat (limited to 'text-utils/hexdump-parse.c')
-rw-r--r--text-utils/hexdump-parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/text-utils/hexdump-parse.c b/text-utils/hexdump-parse.c
index 37d2a4c86..da8d11fe2 100644
--- a/text-utils/hexdump-parse.c
+++ b/text-utils/hexdump-parse.c
@@ -73,14 +73,14 @@ void addfile(char *name)
if (!*fmt || *fmt == '#')
continue;
- add(fmt);
+ add_fmt(fmt);
}
free(buf);
fclose(fp);
}
-void add(const char *fmt)
+void add_fmt(const char *fmt)
{
const char *p, *savep;
FS *tfs;