aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-compact.c
diff options
context:
space:
mode:
authorGravatar Tomi Ollila <tomi.ollila@iki.fi>2013-11-13 19:02:43 +0200
committerGravatar David Bremner <david@tethera.net>2013-11-17 20:25:25 -0400
commit4d5986e8ad671c1f5504894af6fbe37ba314bed8 (patch)
treed37a94dc3c41b2a2f084034e9a217fc685e3fcb3 /notmuch-compact.c
parent24862d5b5f6124221fd942ff12a48604ad22f20b (diff)
compact: tidy formatting
Notmuch compact code whitespace changes to match devel/STYLE.
Diffstat (limited to 'notmuch-compact.c')
-rw-r--r--notmuch-compact.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/notmuch-compact.c b/notmuch-compact.c
index 8022dfe9..8b820c0d 100644
--- a/notmuch-compact.c
+++ b/notmuch-compact.c
@@ -23,7 +23,7 @@
static void
status_update_cb (const char *msg, unused (void *closure))
{
- printf("%s\n", msg);
+ printf ("%s\n", msg);
}
int
@@ -49,7 +49,7 @@ notmuch_compact_command (notmuch_config_t *config, int argc, char *argv[])
ret = notmuch_database_compact (path, backup_path,
quiet ? NULL : status_update_cb, NULL);
if (ret) {
- fprintf (stderr, "Compaction failed: %s\n", notmuch_status_to_string(ret));
+ fprintf (stderr, "Compaction failed: %s\n", notmuch_status_to_string (ret));
return 1;
}