aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-q933.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2005-04-22 15:18:56 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2005-04-22 15:18:56 +0000
commit62d150a3b677e9c9e73133770e9bab5abdc6959d (patch)
treee9a2605576b72eceff34042e9111f9d79aff989f /epan/dissectors/packet-q933.c
parentdf8dc9f05921d2e87a2c391a3b08ef827e9fa01f (diff)
Don't pass a null format string to val_to_str().
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14167 f5534014-38df-0310-8fa8-9805f1628bb7
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;