aboutsummaryrefslogtreecommitdiffstats
path: root/epan/prefs.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-11-17 07:44:37 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-11-17 07:44:37 +0000
commit8868b231bdaea752ea8ccfc5a8f9f6603bfb5780 (patch)
tree30882f6d3fa1874d1a4f9514f3be6e1014662c76 /epan/prefs.c
parentd72967fc71c405ca2a9ada0dd8cd852144a67852 (diff)
Fix build
svn path=/trunk/; revision=19919
Diffstat (limited to 'epan/prefs.c')
-rw-r--r--epan/prefs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/prefs.c b/epan/prefs.c
index 5ee9225049..7ce3afd52f 100644
--- a/epan/prefs.c
+++ b/epan/prefs.c
@@ -54,7 +54,7 @@ static module_t *prefs_register_module_or_subtree(module_t *parent,
const char *name, const char *title, const char *description, gboolean is_subtree,
void (*apply_cb)(void));
static struct preference *find_preference(module_t *, const char *);
-static int set_pref(gchar*, gchar*, void *);
+static prefs_set_pref_e set_pref(gchar*, gchar*, void *);
static GList *get_string_list(gchar *);
static gchar *put_string_list(GList *);
static void clear_string_list(GList *);
@@ -136,7 +136,7 @@ module_compare_title(gconstpointer p1_arg, gconstpointer p2_arg)
* the title used in the tab for it in a preferences dialog box, and a
* routine to call back when we apply the preferences.
*/
-static module_t *
+module_t *
prefs_register_module(module_t *parent, const char *name, const char *title,
const char *description, void (*apply_cb)(void))
{