summaryrefslogtreecommitdiff
path: root/epan/to_str.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/to_str.c')
-rw-r--r--epan/to_str.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/epan/to_str.c b/epan/to_str.c
index 64e7c666f9..ca72e2f104 100644
--- a/epan/to_str.c
+++ b/epan/to_str.c
@@ -1034,17 +1034,6 @@ other_decode_bitfield_value(char *buf, const guint64 val, const guint64 mask, co
return p;
}
-char *
-decode_bitfield_value(char *buf, const guint64 val, const guint64 mask, const int width)
-{
- char *p;
-
- p = other_decode_bitfield_value(buf, val, mask, width);
- p = g_stpcpy(p, " = ");
-
- return p;
-}
-
/*
This function is very fast and this function is called a lot.
XXX update the address_to_str stuff to use this function.