aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ubertooth.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-23 19:24:20 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-23 19:24:20 +0000
commit43a2cd33ee4a0f70f39f017ec6262faf3e675a12 (patch)
tree751d28e012e73f2fbe7efa87f28beb7b5651df73 /epan/dissectors/packet-ubertooth.c
parent0d76e3453ed325f948a8fb2da0dce59c325311dc (diff)
Fix Windows Buildbot
packet-ubertooth.c(680) : warning C4244: '=' : conversion from 'gint16' to 'guint8', possible loss of data svn path=/trunk/; revision=54408
Diffstat (limited to 'epan/dissectors/packet-ubertooth.c')
-rw-r--r--epan/dissectors/packet-ubertooth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ubertooth.c b/epan/dissectors/packet-ubertooth.c
index 261dc13473..1d1d732e09 100644
--- a/epan/dissectors/packet-ubertooth.c
+++ b/epan/dissectors/packet-ubertooth.c
@@ -383,7 +383,7 @@ dissect_ubertooth(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *dat
gint offset = 0;
usb_conv_info_t *usb_conv_info = (usb_conv_info_t *)data;
gint p2p_dir_save;
- gint16 command = -1;
+ guint8 command;
command_data_t *command_data = NULL;
wmem_tree_t *wmem_tree;
wmem_tree_key_t key[5];