From 895d07f7be95419840d6f1fe852a4771fcc55626 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Fri, 8 Jan 2016 02:51:43 -0800 Subject: [PATCH] Again, command values are in decimal, not hex, in DEC's LAT spec. Change-Id: I693eabbba3f9140bccb9a5e490633ba139f13193 Reviewed-on: https://code.wireshark.org/review/13129 Reviewed-by: Guy Harris --- epan/dissectors/packet-lat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-lat.c b/epan/dissectors/packet-lat.c index bf1c5ef3be..a5ee34d7f6 100644 --- a/epan/dissectors/packet-lat.c +++ b/epan/dissectors/packet-lat.c @@ -133,7 +133,7 @@ dissect_lat(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_) command = tvb_get_guint8(tvb, offset) >> 2; col_add_fstr(pinfo->cinfo, COL_INFO, "%s", - val_to_str(command, command_vals, "Unknown command (%02x)")); + val_to_str(command, command_vals, "Unknown command (%u)")); if (tree) { ti = proto_tree_add_item(tree, proto_lat, tvb, offset, -1,