aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-q933.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2005-04-22 15:18:56 +0000
committerGerald Combs <gerald@wireshark.org>2005-04-22 15:18:56 +0000
commit3ed50e1ae72995ccdb040df9add47182173a5210 (patch)
treee9a2605576b72eceff34042e9111f9d79aff989f /epan/dissectors/packet-q933.c
parent42f80d7478a1546d9e1b0da5fa7d2e73dc152bf9 (diff)
Don't pass a null format string to val_to_str().
svn path=/trunk/; revision=14167
Diffstat (limited to 'epan/dissectors/packet-q933.c')
-rw-r--r--epan/dissectors/packet-q933.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-q933.c b/epan/dissectors/packet-q933.c
index cbdaea9d04..0fcc88d4ab 100644
--- a/epan/dissectors/packet-q933.c
+++ b/epan/dissectors/packet-q933.c
@@ -1715,7 +1715,7 @@ dissect_q933_party_subaddr_ie(tvbuff_t *tvb, int offset, int len,
proto_tree_add_text(tree, tvb, offset, 1,
"Odd/even indicator: %s",
val_to_str(octet & 0x10, q933_odd_even_indicator_vals,
- NULL));
+ "Unknown (0x%02X)"));
offset += 1;
len -= 1;