summaryrefslogtreecommitdiffstats
path: root/text-utils/hexdump-conv.c
diff options
context:
space:
mode:
authorOndrej Oprala2013-11-08 17:13:10 +0100
committerKarel Zak2013-12-02 13:44:21 +0100
commit4c73d29c06a858d5cbbe314df570ac03695fae3f (patch)
treec75ed8f65277e43d637faedd77bde5c741b31b24 /text-utils/hexdump-conv.c
parenthexdump: rename rewrite to rewrite_rules (diff)
downloadkernel-qcow2-util-linux-4c73d29c06a858d5cbbe314df570ac03695fae3f.tar.gz
kernel-qcow2-util-linux-4c73d29c06a858d5cbbe314df570ac03695fae3f.tar.xz
kernel-qcow2-util-linux-4c73d29c06a858d5cbbe314df570ac03695fae3f.zip
hexdump: Rename struct _pr to struct hexdump_pr and remove it's typedef
Signed-off-by: Ondrej Oprala <ooprala@redhat.com>
Diffstat (limited to 'text-utils/hexdump-conv.c')
-rw-r--r--text-utils/hexdump-conv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/text-utils/hexdump-conv.c b/text-utils/hexdump-conv.c
index e17acc4fe..0c4f15fa0 100644
--- a/text-utils/hexdump-conv.c
+++ b/text-utils/hexdump-conv.c
@@ -38,7 +38,7 @@
#include "xalloc.h"
void
-conv_c(PR *pr, u_char *p)
+conv_c(struct hexdump_pr *pr, u_char *p)
{
char *buf = NULL;
char const *str;
@@ -85,7 +85,7 @@ strpr: *pr->cchar = 's';
}
void
-conv_u(PR *pr, u_char *p)
+conv_u(struct hexdump_pr *pr, u_char *p)
{
static const char *list[] = {
"nul", "soh", "stx", "etx", "eot", "enq", "ack", "bel",