]> Savannah Git Hosting - gnulib.git/commitdiff
fcntl: Fix syntax error (regression from 2018-10-05).
authorKO Myung-Hun <komh78@gmail.com>
Thu, 17 Jan 2019 18:32:20 +0000 (19:32 +0100)
committerBruno Haible <bruno@clisp.org>
Thu, 17 Jan 2019 18:32:20 +0000 (19:32 +0100)
* lib/fcntl.c (klibc_fcntl): Remove mis-placed ';'.

ChangeLog
lib/fcntl.c

index b32b4228a2e5a696f4d97b215df662fd64cfa8ee..61f5de6dbadaa99b0a2c3daeac15869231666ac5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2019-01-17  KO Myung-Hun  <komh78@gmail.com>
+
+       fcntl: Fix syntax error (regression from 2018-10-05).
+       * lib/fcntl.c (klibc_fcntl): Remove mis-placed ';'.
+
 2019-01-13  Akim Demaille  <akim@lrde.epita.fr>
 
        relocatable: improve documentation.
index f602fad6285108a7874384babf52b609e88a9079..51f62ef78a834411525515bcceb1aea1ff3eee41 100644 (file)
@@ -545,7 +545,7 @@ rpl_fcntl_DUPFD_CLOEXEC (int fd, int target)
 #ifdef __KLIBC__
 
 static int
-klibc_fcntl (int fd, int action, /* arg */...);
+klibc_fcntl (int fd, int action, /* arg */...)
 {
   va_list arg_ptr;
   int arg;