changeset 40105:ed6a8b3113de

fcntl: Fix syntax error (regression from 2018-10-05). * lib/fcntl.c (klibc_fcntl): Remove mis-placed ';'.
author KO Myung-Hun <komh78@gmail.com>
date Thu, 17 Jan 2019 19:32:20 +0100
parents f9262966eef6
children a15f73f2ba12
files ChangeLog lib/fcntl.c
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Jan 15 10:00:28 2019 -0800
+++ b/ChangeLog	Thu Jan 17 19:32:20 2019 +0100
@@ -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.
--- a/lib/fcntl.c	Tue Jan 15 10:00:28 2019 -0800
+++ b/lib/fcntl.c	Thu Jan 17 19:32:20 2019 +0100
@@ -545,7 +545,7 @@
 #ifdef __KLIBC__
 
 static int
-klibc_fcntl (int fd, int action, /* arg */...);
+klibc_fcntl (int fd, int action, /* arg */...)
 {
   va_list arg_ptr;
   int arg;