aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/plugin_table.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-11-01 09:53:13 +0000
committerGuy Harris <guy@alum.mit.edu>2001-11-01 09:53:13 +0000
commitf9ff2a9ab31a6b2717016ade3baa8a98ea4e204a (patch)
tree1391e951629ffecc2cd08574a598aacd0e32174e /plugins/plugin_table.h
parenta81c03816cf3b403487d4a694f438cd732e68e30 (diff)
Fix some declarations to match the signatures of "tvb_find_guint8()" and
"tvb_pbrk_guint8()". svn path=/trunk/; revision=4121
Diffstat (limited to 'plugins/plugin_table.h')
-rw-r--r--plugins/plugin_table.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/plugin_table.h b/plugins/plugin_table.h
index 053012a6d3..a54f226522 100644
--- a/plugins/plugin_table.h
+++ b/plugins/plugin_table.h
@@ -1,7 +1,7 @@
/* plugin_table.h
* Table of exported addresses for Ethereal plugins.
*
- * $Id: plugin_table.h,v 1.27 2001/10/29 21:56:50 guy Exp $
+ * $Id: plugin_table.h,v 1.28 2001/11/01 09:53:13 guy Exp $
*
* Ethereal - Network traffic analyzer
* Copyright 2000 by Gilbert Ramirez <gram@xiexie.org>
@@ -133,8 +133,8 @@ typedef guint8* (*addr_tvb_memdup)(tvbuff_t*, gint, gint);
typedef const guint8* (*addr_tvb_get_ptr)(tvbuff_t*, gint, gint);
-typedef gint (*addr_tvb_find_guint8)(tvbuff_t*, gint, guint, guint8);
-typedef gint (*addr_tvb_pbrk_guint8)(tvbuff_t *, gint, guint, guint8 *);
+typedef gint (*addr_tvb_find_guint8)(tvbuff_t*, gint, gint, guint8);
+typedef gint (*addr_tvb_pbrk_guint8)(tvbuff_t *, gint, gint, guint8 *);
typedef gint (*addr_tvb_strnlen)(tvbuff_t*, gint, guint);