summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2013-03-14 13:20:58 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2013-03-14 13:20:58 +0000
commitf4812328616507f6f55bb198bf2e3aa45abba741 (patch)
tree38c3c1e15c1c9f15cb317b0187d1eabc45c99faf
parent0b2225d839022730ee0069835579e69a7f825fae (diff)
Fix indentation
-rw-r--r--usr.bin/mktemp/mktemp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mktemp/mktemp.c b/usr.bin/mktemp/mktemp.c
index c0849627ec4..ac50a3e7205 100644
--- a/usr.bin/mktemp/mktemp.c
+++ b/usr.bin/mktemp/mktemp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mktemp.c,v 1.17 2013/03/12 19:09:23 millert Exp $ */
+/* $OpenBSD: mktemp.c,v 1.18 2013/03/14 13:20:57 millert Exp $ */
/*
* Copyright (c) 1996, 1997, 2001-2003, 2013
@@ -89,8 +89,8 @@ main(int argc, char *argv[])
len = strlen(template);
if (len < 6 || strcmp(&template[len - 6], "XXXXXX")) {
if (!quiet) {
- warnx("insufficient number of Xs in template `%s'",
- template);
+ warnx("insufficient number of Xs in template `%s'",
+ template);
}
exit(1);
}