From: Michael Stapelberg Date: Sun, 6 Nov 2011 14:08:33 +0000 (+0000) Subject: Get rid of superfluous \n in --version X-Git-Tag: 2.2~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=409025c7cccbce9a27c62313410bbce96560620e;p=i3%2Fi3lock Get rid of superfluous \n in --version --- diff --git a/i3lock.c b/i3lock.c index d34a562..2241f05 100644 --- a/i3lock.c +++ b/i3lock.c @@ -396,7 +396,7 @@ int main(int argc, char *argv[]) { , longopts, &optind)) != -1) { switch (o) { case 'v': - errx(EXIT_SUCCESS, "version " VERSION " © 2010-2011 Michael Stapelberg\n"); + errx(EXIT_SUCCESS, "version " VERSION " © 2010-2011 Michael Stapelberg"); case 'n': dont_fork = true; break;