aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ospf.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-ospf.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-ospf.c')
-rw-r--r--epan/dissectors/packet-ospf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ospf.c b/epan/dissectors/packet-ospf.c
index 7670b9e701..0d3380a60d 100644
--- a/epan/dissectors/packet-ospf.c
+++ b/epan/dissectors/packet-ospf.c
@@ -1126,11 +1126,11 @@ dissect_ospf_bitfield (proto_tree *parent_tree, tvbuff_t *tvb, int offset,
proto_tree *tree = NULL;
guint32 flags;
char *str;
- size_t length, pos;
+ gint length, pos;
gint i;
header_field_info *hfinfo;
int hfindex, index;
- size_t returned_length;
+ gint returned_length;
hfindex = ospf_filter[bfinfo->hfindex];
hfinfo = proto_registrar_get_nth(hfindex);