diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 1999-08-11 02:32:09 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 1999-08-11 02:32:09 +0000 |
commit | 4cdd0b2dfb5e0e8314c93edf99f0b2fe73c3ebe4 (patch) | |
tree | 97aa762c1a2efaed35e9feb454b4f14c27f57e35 /lib/libc | |
parent | 3de6671291ae5cb820653d9e6d3c270ddad5fba4 (diff) |
paste'o away!
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/stdio/mktemp.3 | 6 |
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); |