diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-05-31 18:32:15 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-05-31 18:32:15 +0000 |
commit | 5a5f56ffbf26038ce6cc2a015bf98ad981ef0ddf (patch) | |
tree | 2e45d419f1e55ccbd858663996f83c0e43ff7d18 /proto.h | |
parent | 5d76d969297cf8fa54364a768c3593a3fd276292 (diff) | |
download | wireshark-5a5f56ffbf26038ce6cc2a015bf98ad981ef0ddf.tar.gz wireshark-5a5f56ffbf26038ce6cc2a015bf98ad981ef0ddf.tar.bz2 wireshark-5a5f56ffbf26038ce6cc2a015bf98ad981ef0ddf.zip |
Fix plugin function table so that plugins work on Win32.
svn path=/trunk/; revision=2034
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* proto.h * Definitions for protocol display * - * $Id: proto.h,v 1.33 2000/05/31 17:10:10 gram Exp $ + * $Id: proto.h,v 1.34 2000/05/31 18:32:07 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -334,7 +334,7 @@ proto_tree_add_ether_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint s #else proto_item * proto_tree_add_ether_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start, - gint length, guint8* value, const char *format, ...); + gint length, const guint8* value, const char *format, ...); #endif /* Add a FT_STRING to a proto_tree */ |