From b1600c0b0225a3e6ea3a299a835d586807a967b9 Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Wed, 8 Aug 2001 23:26:58 +0000 Subject: [PATCH] spacing; no newline at end of file --- bin/rndc/win32/os.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/rndc/win32/os.c b/bin/rndc/win32/os.c index d5e99998ce..e085cd3ba0 100644 --- a/bin/rndc/win32/os.c +++ b/bin/rndc/win32/os.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: os.c,v 1.1 2001/08/06 05:35:16 mayer Exp $ */ +/* $Id: os.c,v 1.2 2001/08/08 23:26:58 gson Exp $ */ #include @@ -54,11 +54,11 @@ safe_create(const char *filename) { return (NULL); } - fd = open(filename, O_WRONLY|O_CREAT|O_EXCL, S_IRUSR|S_IWUSR); + fd = open(filename, O_WRONLY | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR); if (fd == -1) return (NULL); f = fdopen(fd, "w"); if (f == NULL) close(fd); return (f); -} \ No newline at end of file +}