aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-q933.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2005-04-22 15:00:45 +0000
committerGerald Combs <gerald@wireshark.org>2005-04-22 15:00:45 +0000
commit42f80d7478a1546d9e1b0da5fa7d2e73dc152bf9 (patch)
tree21c3cde2f05e10e4d9adfeb117553b399156f456 /epan/dissectors/packet-q933.c
parentf2695565b4875fd6061a85646356ab32946e223a (diff)
Don't pass a null format string to val_to_str().
svn path=/trunk/; revision=14166
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;