aboutsummaryrefslogtreecommitdiffstats
path: root/epan/reassemble_test.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-04-04 03:05:27 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-04-04 03:05:27 +0000
commiteb8623435fffe4bf2aec0827b1b3cc61139220ee (patch)
treeac351f1fee0eb47ca4af230b56bf7fb2a018f7c5 /epan/reassemble_test.c
parent2c3d848dc56de2327eda1216608b13ca32b7ae48 (diff)
Fix to match changes to the signatures of the real versions of those
functions. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32370 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/reassemble_test.c')
-rw-r--r--epan/reassemble_test.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/epan/reassemble_test.c b/epan/reassemble_test.c
index caa3eee232..7f012b3d02 100644
--- a/epan/reassemble_test.c
+++ b/epan/reassemble_test.c
@@ -1092,7 +1092,7 @@ proto_item *proto_tree_add_uint_format(proto_tree *tree _U_, int hfindex _U_,
const char *format _U_, ...)
{ return NULL; }
-proto_tree* proto_item_add_subtree(proto_item *ti _U_, gint idx _U_)
+proto_tree* proto_item_add_subtree(proto_item *ti _U_, const gint idx _U_)
{ return NULL; }
proto_item *proto_tree_add_boolean(proto_tree *tree _U_, int hfindex _U_,
@@ -1100,15 +1100,16 @@ proto_item *proto_tree_add_boolean(proto_tree *tree _U_, int hfindex _U_,
gint length _U_, guint32 value _U_)
{ return NULL; }
-proto_item *proto_tree_add_item(proto_tree *tree _U_, int hfindex _U_,
- tvbuff_t *tvb _U_, gint start _U_,
- gint length _U_, gboolean little_endian _U_)
+proto_item *proto_tree_add_item(proto_tree *tree _U_, const int hfindex _U_,
+ tvbuff_t *tvb _U_, const gint start _U_,
+ gint length _U_,
+ const gboolean little_endian _U_)
{ return NULL; }
-gint check_col(column_info *cinfo _U_, gint col _U_)
+gint check_col(column_info *cinfo _U_, const gint col _U_)
{ return 0; }
-void col_add_fstr(column_info *cinfo _U_, gint col _U_, const gchar *format _U_,
+void col_add_fstr(column_info *cinfo _U_, const gint col _U_, const gchar *format _U_,
...)
{}