summaryrefslogtreecommitdiffstats
path: root/text-utils/hexdump.c
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.c
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.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 e3c3897ed..d5b9992e0 100644
--- a/text-utils/hexdump.c
+++ b/text-utils/hexdump.c
@@ -72,14 +72,14 @@ int main(int argc, char **argv)
/* figure out the data block size */
blocksize = 0;
list_for_each(p, &fshead) {
- tfs = list_entry(p, FS, nextfs);
+ tfs = list_entry(p, FS, fslist);
if ((tfs->bcnt = block_size(tfs)) > blocksize)
blocksize = tfs->bcnt;
}
/* rewrite the rules, do syntax checking */
list_for_each(p, &fshead)
- rewrite(list_entry(p, FS, nextfs));
+ rewrite(list_entry(p, FS, fslist));
next(argv);
display();