From baf1867cc46b67b7227d39542c551cd54609a80b Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 21 Oct 2009 14:02:51 -0700 Subject: [PATCH] notmuch dump: Fix to print spaces between tags. Simple little bug here made all the tags run together. --- notmuch.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/notmuch.c b/notmuch.c index e157f02f..d7642521 100644 --- a/notmuch.c +++ b/notmuch.c @@ -411,6 +411,7 @@ dump_command (int argc, char *argv[]) notmuch_results_has_more (results); notmuch_results_advance (results)) { + int first = 1; message = notmuch_results_get (results); fprintf (output, @@ -420,8 +421,6 @@ dump_command (int argc, char *argv[]) notmuch_tags_has_more (tags); notmuch_tags_advance (tags)) { - int first = 1; - if (! first) fprintf (output, " "); -- 2.43.0