aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ositp.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2009-03-22 20:55:31 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2009-03-22 20:55:31 +0000
commit5635e93196698102cf37cb91b6690dcc66471f47 (patch)
tree70c7600431ace9c6831016767308c26e2f52fbfd /epan/dissectors/packet-ositp.c
parentf5f8a16e5b3df012bcb5a355b0b2c5cef5d2a30d (diff)
P64 changes: Fix some cases for which size_t is not required
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27822 f5534014-38df-0310-8fa8-9805f1628bb7
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';