aboutsummaryrefslogtreecommitdiffstats
path: root/set.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2009-10-11 13:57:29 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2009-10-11 13:57:29 +0100
commit0f7ee7e53f6bcb2d1d262a94c278440413c0103a (patch)
treec1cef2714322015afe4c7ac9b2f57dd626a907b8 /set.c
parentdb4cd40374ade33ccb1feae113f12a1dd0b6bf37 (diff)
Copy all the string/bool/int account settings with their defaults to
"account set". They can be changed, but changes don't yet have any effect.
Diffstat (limited to 'set.c')
-rw-r--r--set.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/set.c b/set.c
index 18d5a50d..f72e0ace 100644
--- a/set.c
+++ b/set.c
@@ -28,7 +28,7 @@
/* Used to use NULL for this, but NULL is actually a "valid" value. */
char *SET_INVALID = "nee";
-set_t *set_add( set_t **head, char *key, char *def, set_eval eval, void *data )
+set_t *set_add( set_t **head, const char *key, const char *def, set_eval eval, void *data )
{
set_t *s = set_find( head, key );