aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/unistim
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-04-16 03:38:23 +0000
committerGerald Combs <gerald@wireshark.org>2009-04-16 03:38:23 +0000
commit17f0d877faff64832b2a93f24d21b873fe59919e (patch)
tree253e33214029012feff56f1b85d83121fef627cf /plugins/unistim
parent605ef095f929bf68880009342d530112bde91cc6 (diff)
Fix Win64 compilation problems in the plugins directory.
svn path=/trunk/; revision=28064
Diffstat (limited to 'plugins/unistim')
-rw-r--r--plugins/unistim/packet-unistim.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/unistim/packet-unistim.c b/plugins/unistim/packet-unistim.c
index f2ecffb9c4..86460e18a1 100644
--- a/plugins/unistim/packet-unistim.c
+++ b/plugins/unistim/packet-unistim.c
@@ -2604,7 +2604,7 @@ dissect_audio_phone(proto_tree *msg_tree,
static void
set_ascii_item(proto_tree *msg_tree,tvbuff_t *tvb, gint offset,guint msg_len){
char *buffer=NULL;
- guint16 buffer_index=0;
+ gsize buffer_index=0;
guint16 msg_index=0;
guint8 character;
char *label="DATA: ";
@@ -2637,7 +2637,7 @@ set_ascii_item(proto_tree *msg_tree,tvbuff_t *tvb, gint offset,guint msg_len){
static void
set_ascii_null_term_item(proto_tree *msg_tree,tvbuff_t *tvb, gint offset,guint msg_len,char *label){
char *buffer=NULL;
- guint16 buffer_index=0;
+ gsize buffer_index=0;
guint16 msg_index=0;
guint8 character;
#define MAX_BUFFER 1024