aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-setup.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-10-27 18:07:37 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-10-27 18:07:37 -0700
commitc6e70e15eaf7355fb9fe9b599aef07f2be619968 (patch)
tree28b3ea8ec9970dc0132bf97ef3c6a56bd50c727e /notmuch-setup.c
parentc9e0da3a1aaa640da330fe82fa906bb84463736b (diff)
notmuch: Eliminate some const-correctness warnings.
These were introduced as a side-effect of commit b9eac48c22f53f84ed1d9c1d8ca862a7b638c9ac (shame on me for doing side-effect commits like that!). For me, at least, compilation is now warning-free.
Diffstat (limited to 'notmuch-setup.c')
-rw-r--r--notmuch-setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-setup.c b/notmuch-setup.c
index 955deb7e..ec4bfebc 100644
--- a/notmuch-setup.c
+++ b/notmuch-setup.c
@@ -94,7 +94,7 @@ notmuch_setup_command (unused (void *ctx),
char *response = NULL;
size_t response_size;
notmuch_config_t *config;
- char **old_other_emails;
+ const char **old_other_emails;
size_t old_other_emails_len;
GPtrArray *other_emails;
unsigned int i;