summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2011-11-06 14:08:33 +0000
committerMichael Stapelberg <michael@stapelberg.de>2011-11-06 14:08:33 +0000
commit409025c7cccbce9a27c62313410bbce96560620e (patch)
tree6a49e4f36cd02bec7f98a11d605beaf84eadff8f
parent00f1350bd53b2449df12cd744fc5982fc1daae37 (diff)
Get rid of superfluous \n in --version
-rw-r--r--i3lock.c2
1 files changed, 1 insertions, 1 deletions
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;