aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tds.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-tds.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-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;