aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ositp.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2009-03-22 20:55:31 +0000
committerBill Meier <wmeier@newsguy.com>2009-03-22 20:55:31 +0000
commitd6a5a7c761ef10390ff79d8bd39a461813112290 (patch)
tree70c7600431ace9c6831016767308c26e2f52fbfd /epan/dissectors/packet-ositp.c
parent2f6fe511f3638c25630f4d00ea54e86edf91170b (diff)
P64 changes: Fix some cases for which size_t is not required
svn path=/trunk/; revision=27822
Diffstat (limited to 'epan/dissectors/packet-ositp.c')
-rw-r--r--epan/dissectors/packet-ositp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ositp.c b/epan/dissectors/packet-ositp.c
index 7ccbfc240b..e508c4597d 100644
--- a/epan/dissectors/packet-ositp.c
+++ b/epan/dissectors/packet-ositp.c
@@ -311,7 +311,7 @@ static gchar *print_tsap(const guchar *tsap, int length)
gchar *cur;
gboolean allprintable;
- size_t idx = 0, returned_length;
+ gint idx = 0, returned_length;
cur=ep_alloc(MAX_TSAP_LEN * 2 + 3);
cur[0] = '\0';