aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-25 09:20:13 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-25 09:20:13 -0700
commit9f673f3cf866d114edc77080cd9f9e266d403c14 (patch)
treebf713ce78d6227cdd022fd07482e93cddddf6366 /notmuch.c
parenta8ae2cd214bca3c89b0f9a5566c227459eec40f5 (diff)
notmuch dump: Eliminate extra space in error message.
Little details can make big impressions.
Diffstat (limited to 'notmuch.c')
-rw-r--r--notmuch.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/notmuch.c b/notmuch.c
index f16192fb..46c3c63b 100644
--- a/notmuch.c
+++ b/notmuch.c
@@ -818,7 +818,8 @@ restore_command (int argc, char *argv[])
notmuch_status_to_string (status));
}
} else {
- fprintf (stderr, "%s ", tag);
+ fprintf (stderr, "%s%s",
+ tag == tags ? "" : " ", tag);
}
}