commit f23409f65a53f813c5d795d5bd87eac9d44769b7
Author: sin <[email protected]>
Date: Fri May 2 21:38:03 2014 +0100
Break long line in mktemp(1)
diff --git a/mktemp.c b/mktemp.c
index d2188d1..cf2572f 100644
--- a/mktemp.c
+++ b/mktemp.c
@@ -42,7 +42,8 @@ main(int argc, char *argv[])
if ((p = getenv("TMPDIR")))
tmpdir = p;
- if (snprintf(tmppath, sizeof(tmppath), "%s/%s", tmpdir, template) >=
sizeof(tmppath))
+ if (snprintf(tmppath, sizeof(tmppath),
+ "%s/%s", tmpdir, template) >= sizeof(tmppath))
eprintf("path too long
");
if (dflag) {
if (!mkdtemp(tmppath)) {