From 180dba66e47a5257b2cdf2f1ceb59cc8fa5a69d4 Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Sun, 3 Nov 2013 14:24:45 +0200 Subject: lib: add closure parameter to compact status update callback This provides much more flexibility for the caller. --- notmuch-compact.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'notmuch-compact.c') 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 { -- cgit v1.2.3