aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-scsi.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2007-03-23 00:51:21 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2007-03-23 00:51:21 +0000
commit23265ea379ebffdf650e44cbb0cee5856777d24f (patch)
tree23c9ef4abb163a722dd20f5f081c3611e8569b48 /epan/dissectors/packet-scsi.c
parent9e6adb9effe7feb4857ba1164b4d892d5f7dc06b (diff)
fix some more warnings (type casts)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21141 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-scsi.c')
-rw-r--r--epan/dissectors/packet-scsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-scsi.c b/epan/dissectors/packet-scsi.c
index 842695a2ac..6fb9cbf573 100644
--- a/epan/dissectors/packet-scsi.c
+++ b/epan/dissectors/packet-scsi.c
@@ -4551,7 +4551,7 @@ dissect_scsi_payload (tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
old_proto=pinfo->current_proto;
pinfo->current_proto="SCSI";
- opcode = cdata->itlq->scsi_opcode;
+ opcode = (guint8) cdata->itlq->scsi_opcode;
devtype = cdata->itl->cmdset&SCSI_CMDSET_MASK;
if (tree) {