summaryrefslogtreecommitdiffstats
path: root/text-utils/hexdump.h
diff options
context:
space:
mode:
authorOndrej Oprala2013-09-23 15:39:20 +0200
committerKarel Zak2013-11-08 12:54:52 +0100
commitbbc8c1531f63e452b40b02cd8f2dcec107d4bf94 (patch)
tree6b8f0f5aa875cadfa53cb8fc53afc956cc468c9d /text-utils/hexdump.h
parenthexdump: rewrite addfile() to use getline() (diff)
downloadkernel-qcow2-util-linux-bbc8c1531f63e452b40b02cd8f2dcec107d4bf94.tar.gz
kernel-qcow2-util-linux-bbc8c1531f63e452b40b02cd8f2dcec107d4bf94.tar.xz
kernel-qcow2-util-linux-bbc8c1531f63e452b40b02cd8f2dcec107d4bf94.zip
hexdump: rename next{fs,fu,pr} to {fs,fu,pr}list
Signed-off-by: Ondrej Oprala <ooprala@redhat.com>
Diffstat (limited to 'text-utils/hexdump.h')
-rw-r--r--text-utils/hexdump.h10
1 files changed, 5 insertions, 5 deletions
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;