From bbc8c1531f63e452b40b02cd8f2dcec107d4bf94 Mon Sep 17 00:00:00 2001 From: Ondrej Oprala Date: Mon, 23 Sep 2013 15:39:20 +0200 Subject: hexdump: rename next{fs,fu,pr} to {fs,fu,pr}list Signed-off-by: Ondrej Oprala --- text-utils/hexdump.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'text-utils/hexdump.h') diff --git a/text-utils/hexdump.h b/text-utils/hexdump.h index c9fc4a009..f81b3bd13 100644 --- a/text-utils/hexdump.h +++ b/text-utils/hexdump.h @@ -36,7 +36,7 @@ #include "list.h" typedef struct _pr { - struct list_head nextpr; /* next print unit */ + struct list_head prlist; /* next print unit */ #define F_ADDRESS 0x001 /* print offset */ #define F_BPAD 0x002 /* blank pad */ #define F_C 0x004 /* %_c */ @@ -56,8 +56,8 @@ typedef struct _pr { } PR; typedef struct _fu { - struct list_head nextfu; /* next format unit */ - struct list_head nextpr; /* next print unit */ + struct list_head fulist; /* next format unit */ + struct list_head prlist; /* next print unit */ #define F_IGNORE 0x01 /* %_A */ #define F_SETREP 0x02 /* rep count set, not default */ unsigned int flags; /* flag values */ @@ -67,8 +67,8 @@ typedef struct _fu { } FU; typedef struct _fs { /* format strings */ - struct list_head nextfs; /* linked list of format strings */ - struct list_head nextfu; /* linked list of format units */ + struct list_head fslist; /* linked list of format strings */ + struct list_head fulist; /* linked list of format units */ int bcnt; } FS; -- cgit v1.2.3-55-g7522