X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-compact.c;h=ee7afcf6b9a0c32be4e01ff1881c572bc07bf5fe;hp=bfda40e3a7f3dcaf6a99855981dd37ded8e66bd5;hb=180dba66e47a5257b2cdf2f1ceb59cc8fa5a69d4;hpb=35ca5feb28a6e52851ba61ea63478ade40991558 diff --git a/notmuch-compact.c b/notmuch-compact.c index bfda40e3..ee7afcf6 100644 --- a/notmuch-compact.c +++ b/notmuch-compact.c @@ -20,10 +20,8 @@ #include "notmuch-client.h" -void status_update_cb (const char *msg); - -void -status_update_cb (const char *msg) +static void +status_update_cb (const char *msg, unused (void *closure)) { printf("%s\n", msg); } @@ -38,7 +36,7 @@ notmuch_compact_command (notmuch_config_t *config, notmuch_status_t ret; printf ("Compacting database...\n"); - ret = notmuch_database_compact (path, backup_path, status_update_cb); + ret = notmuch_database_compact (path, backup_path, status_update_cb, NULL); if (ret) { fprintf (stderr, "Compaction failed: %s\n", notmuch_status_to_string(ret)); } else {