From 046921da22a865addc7a6adb6abab85a3f230748 Mon Sep 17 00:00:00 2001 From: Ondrej Oprala Date: Fri, 8 Nov 2013 17:13:11 +0100 Subject: hexdump: rename struct _fu to struct hexdump_fu and remove its typedef Signed-off-by: Ondrej Oprala --- text-utils/hexdump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'text-utils/hexdump.c') 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); -- cgit v1.2.3-55-g7522