summaryrefslogtreecommitdiffstats
path: root/text-utils/hexdump.c
diff options
context:
space:
mode:
authorOndrej Oprala2013-11-08 17:13:11 +0100
committerKarel Zak2013-12-02 13:44:22 +0100
commit046921da22a865addc7a6adb6abab85a3f230748 (patch)
treef0fc152d49f1e3437eacb1c7d0e7a1e15edd62be /text-utils/hexdump.c
parenthexdump: Rename struct _pr to struct hexdump_pr and remove it's typedef (diff)
downloadkernel-qcow2-util-linux-046921da22a865addc7a6adb6abab85a3f230748.tar.gz
kernel-qcow2-util-linux-046921da22a865addc7a6adb6abab85a3f230748.tar.xz
kernel-qcow2-util-linux-046921da22a865addc7a6adb6abab85a3f230748.zip
hexdump: rename struct _fu to struct hexdump_fu and remove its typedef
Signed-off-by: Ondrej Oprala <ooprala@redhat.com>
Diffstat (limited to 'text-utils/hexdump.c')
-rw-r--r--text-utils/hexdump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/text-utils/hexdump.c b/text-utils/hexdump.c
index 5dfbf1a80..cd4bfd4a2 100644
--- a/text-utils/hexdump.c
+++ b/text-utils/hexdump.c
@@ -207,12 +207,12 @@ void hex_free(void)
{
struct list_head *p, *pn, *q, *qn, *r, *rn;
FS *fs;
- FU *fu;
+ struct hexdump_fu *fu;
struct hexdump_pr *pr;
list_for_each_safe(p, pn, &fshead) {
fs = list_entry(p, FS, fslist);
list_for_each_safe(q, qn, &fs->fulist) {
- fu = list_entry(q, FU, fulist);
+ fu = list_entry(q, struct hexdump_fu, fulist);
list_for_each_safe(r, rn, &fu->prlist) {
pr = list_entry(r, struct hexdump_pr, prlist);
free(pr->fmt);