summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio
diff options
context:
space:
mode:
authortodd <todd@openbsd.org>1999-08-11 02:32:08 +0000
committertodd <todd@openbsd.org>1999-08-11 02:32:08 +0000
commitbd1da020397e0b8cbc296813f187bfb73b7e23aa (patch)
tree391fc2466e55dea0823a7f10e13e67f6fe12324c /lib/libc/stdio
parentl alias by default (diff)
downloadwireguard-openbsd-bd1da020397e0b8cbc296813f187bfb73b7e23aa.tar.xz
wireguard-openbsd-bd1da020397e0b8cbc296813f187bfb73b7e23aa.zip
paste'o away!
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r--lib/libc/stdio/mktemp.36
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdio/mktemp.3 b/lib/libc/stdio/mktemp.3
index b3949caa39c..63a9e194f64 100644
--- a/lib/libc/stdio/mktemp.3
+++ b/lib/libc/stdio/mktemp.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: mktemp.3,v 1.16 1999/06/06 15:17:31 aaron Exp $
+.\" $OpenBSD: mktemp.3,v 1.17 1999/08/11 02:32:08 todd Exp $
.\"
.\" Copyright (c) 1989, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -225,7 +225,7 @@ FILE *sfp;
strcpy(sfn, "/tmp/ed.XXXXXX");
if (mktemp(sfn) == NULL || (sfp = fopen(sfn, "w+")) == NULL) {
- fprintf(stderr, "%s: %s\n", sfn, strerror(errno));
+ fprintf(stderr, "%s: %s\en", sfn, strerror(errno));
return (NULL);
}
return (sfp);
@@ -244,7 +244,7 @@ if ((fd = mkstemp(sfn)) == -1 ||
unlink(sfn);
close(fd);
}
- fprintf(stderr, "%s: %s\n", sfn, strerror(errno));
+ fprintf(stderr, "%s: %s\en", sfn, strerror(errno));
return (NULL);
}
return (sfp);