Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2003-12-03 12:16:37 +0300
committerCorinna Vinschen <corinna@vinschen.de>2003-12-03 12:16:37 +0300
commit941c9bf805b0abfc911ed79a3ef712245996bf8e (patch)
tree374bc0693d8295492d5fda86b80d639d0dba1810
parentd1eb7a4615a95da05f4bbc2e93e167b8afe6f0dc (diff)
* fcntl.cc (_fcntl): Whitespace cleanup.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/fcntl.cc6
2 files changed, 7 insertions, 3 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 5f77fb3d9..966a812a5 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2003-12-03 Corinna Vinschen <corinna@vinschen.de>
+
+ * fcntl.cc (_fcntl): Whitespace cleanup.
+
2003-12-03 Christopher Faylor <cgf@redhat.com>
* cygthread.cc (cygthread::stub): Properly establish _threadinfo
diff --git a/winsup/cygwin/fcntl.cc b/winsup/cygwin/fcntl.cc
index 28c669da6..a492bf93d 100644
--- a/winsup/cygwin/fcntl.cc
+++ b/winsup/cygwin/fcntl.cc
@@ -31,7 +31,7 @@ fcntl_worker (int fd, int cmd, void *arg)
goto done;
}
if (cmd != F_DUPFD)
- res = cfd->fcntl(cmd, arg);
+ res = cfd->fcntl (cmd, arg);
else
res = dup2 (fd, cygheap_fdnew (((int) arg) - 1));
done:
@@ -40,7 +40,7 @@ done:
}
extern "C" int
-fcntl64 (int fd, int cmd,...)
+fcntl64 (int fd, int cmd, ...)
{
void *arg = NULL;
va_list args;
@@ -52,7 +52,7 @@ fcntl64 (int fd, int cmd,...)
}
extern "C" int
-_fcntl (int fd, int cmd,...)
+_fcntl (int fd, int cmd, ...)
{
void *arg = NULL;
va_list args;