From: Carl Worth Date: Sun, 25 Oct 2009 16:20:13 +0000 (-0700) Subject: notmuch dump: Eliminate extra space in error message. X-Git-Tag: 0.1~715 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=9f673f3cf866d114edc77080cd9f9e266d403c14 notmuch dump: Eliminate extra space in error message. Little details can make big impressions. --- 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); } }