X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-reindex.c;h=a7380a4bc197beb60f8140b9c37c5cc06ed8cf3e;hp=fa84d4fc8f23f7f1e3f0674a7b83c0c2229dbe91;hb=f2e2f2aa96cb0d40c6fb85cde2ab82380c367485;hpb=0ab0b48be2d76c2c9b5581c1b66b21934b2025b7 diff --git a/notmuch-reindex.c b/notmuch-reindex.c index fa84d4fc..a7380a4b 100644 --- a/notmuch-reindex.c +++ b/notmuch-reindex.c @@ -26,7 +26,7 @@ static volatile sig_atomic_t interrupted; static void handle_sigint (unused (int sig)) { - static char msg[] = "Stopping... \n"; + static const char msg[] = "Stopping... \n"; /* This write is "opportunistic", so it's okay to ignore the * result. It is not required for correctness, and if it does @@ -83,7 +83,7 @@ reindex_query (notmuch_database_t *notmuch, const char *query_string, } int -notmuch_reindex_command (unused(notmuch_config_t *config), notmuch_database_t *notmuch, int argc, char *argv[]) +notmuch_reindex_command (notmuch_database_t *notmuch, int argc, char *argv[]) { char *query_string = NULL; struct sigaction action;