aboutsummaryrefslogtreecommitdiffstats
path: root/prefs-int.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-11-18 21:41:40 +0000
committerGuy Harris <guy@alum.mit.edu>2000-11-18 21:41:40 +0000
commit74777083d35400bb6ca9fff58ea3e0d53f24671d (patch)
tree32ae2267a8133abe304049709bfea28f95b428e1 /prefs-int.h
parent567ee3e08380fca08b272aae2932062148de7804 (diff)
Fix a number of problems that caused compiles to fail if
PLUGINS_NEED_ADDRESS_TABLE was defined. svn path=/trunk/; revision=2662
Diffstat (limited to 'prefs-int.h')
-rw-r--r--prefs-int.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/prefs-int.h b/prefs-int.h
index 3df04f88b6..04eb084c38 100644
--- a/prefs-int.h
+++ b/prefs-int.h
@@ -2,7 +2,7 @@
* Definitions for implementation of preference handling routines;
* used by "friends" of the preferences type.
*
- * $Id: prefs-int.h,v 1.2 2000/07/09 03:29:27 guy Exp $
+ * $Id: prefs-int.h,v 1.3 2000/11/18 21:41:36 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -64,7 +64,7 @@ struct preference {
union {
guint base; /* input/output base, for PREF_UINT */
struct {
- const enum_val *enumvals; /* list of name & values */
+ const enum_val_t *enumvals; /* list of name & values */
gboolean radio_buttons; /* TRUE if it should be shown as
radio buttons rather than as an
option menu or combo box in
@@ -74,7 +74,7 @@ struct preference {
void *control; /* handle for GUI control for this preference */
};
-gint find_val_for_string(const char *needle, const enum_val *haystack,
+gint find_val_for_string(const char *needle, const enum_val_t *haystack,
gint default_value);
#endif /* prefs-int.h */