aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-q933.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2005-04-22 15:00:45 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2005-04-22 15:00:45 +0000
commitdf8dc9f05921d2e87a2c391a3b08ef827e9fa01f (patch)
tree21c3cde2f05e10e4d9adfeb117553b399156f456 /epan/dissectors/packet-q933.c
parentbfbef0aa5a25b092557453df69528af7643ed6a0 (diff)
Don't pass a null format string to val_to_str().
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14166 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 97ec332646..cbdaea9d04 100644
--- a/epan/dissectors/packet-q933.c
+++ b/epan/dissectors/packet-q933.c
@@ -1244,7 +1244,7 @@ dissect_q933_channel_identification_ie(tvbuff_t *tvb, int offset, int len,
proto_tree_add_text(tree, tvb, offset, 1,
"Channel selection: %s",
val_to_str(octet & 0x03, q933_basic_channel_selection_vals,
- NULL));
+ "Unknown (0x%X)"));
}
offset += 1;
len -= 1;