aboutsummaryrefslogtreecommitdiffstats
path: root/prefs.h
diff options
context:
space:
mode:
authordeniel <deniel@f5534014-38df-0310-8fa8-9805f1628bb7>2000-08-15 20:53:31 +0000
committerdeniel <deniel@f5534014-38df-0310-8fa8-9805f1628bb7>2000-08-15 20:53:31 +0000
commit5e96453dad9e3b98604ae1760e4e2ff50cd75ddd (patch)
tree0942925dbdfe5de923354388b36b06073cea2229 /prefs.h
parent6cc4f5819a037089c0cf4ac930e462055a3b45b2 (diff)
Fix a problem with const char *
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2276 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'prefs.h')
-rw-r--r--prefs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/prefs.h b/prefs.h
index 52a723d6dd..380507a35e 100644
--- a/prefs.h
+++ b/prefs.h
@@ -1,7 +1,7 @@
/* prefs.h
* Definitions for preference handling routines
*
- * $Id: prefs.h,v 1.18 2000/08/15 20:42:10 deniel Exp $
+ * $Id: prefs.h,v 1.19 2000/08/15 20:53:31 deniel Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -95,7 +95,7 @@ gboolean prefs_is_registered_protocol(char *name);
/*
* Returns the module title of a registered protocol (or NULL if unknown)
*/
-char *prefs_get_title_by_name(char *name);
+const char *prefs_get_title_by_name(char *name);
/*
* Register a preference with an unsigned integral value.