Break long line in mktemp(1)

This commit is contained in:
sin 2014-05-02 21:38:03 +01:00
parent 0bc6b1377b
commit f23409f65a
1 changed files with 2 additions and 1 deletions

View File

@ -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\n");
if (dflag) {
if (!mkdtemp(tmppath)) {