aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tds.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-tds.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-tds.c')
-rw-r--r--epan/dissectors/packet-tds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-tds.c b/epan/dissectors/packet-tds.c
index ec1e804ed1..c39d57e172 100644
--- a/epan/dissectors/packet-tds.c
+++ b/epan/dissectors/packet-tds.c
@@ -978,7 +978,7 @@ static char *data_to_string(void *data, guint col_type, guint col_size)
* the length must be computed using the column information seen in the result
* PDU. This function does just that.
*/
-static size_t
+static guint
tds_get_row_size(tvbuff_t *tvb, struct _netlib_data *nl_data, guint offset)
{
guint cur, i, csize;