From 2541624fd8fd7bd27de55936ba94589e42ab6a84 Mon Sep 17 00:00:00 2001 From: KO Myung-Hun Date: Thu, 17 Jan 2019 19:32:20 +0100 Subject: [PATCH] fcntl: Fix syntax error (regression from 2018-10-05). * lib/fcntl.c (klibc_fcntl): Remove mis-placed ';'. --- ChangeLog | 5 +++++ lib/fcntl.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b32b4228a2..61f5de6dba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2019-01-17 KO Myung-Hun + + fcntl: Fix syntax error (regression from 2018-10-05). + * lib/fcntl.c (klibc_fcntl): Remove mis-placed ';'. + 2019-01-13 Akim Demaille relocatable: improve documentation. diff --git a/lib/fcntl.c b/lib/fcntl.c index f602fad628..51f62ef78a 100644 --- a/lib/fcntl.c +++ b/lib/fcntl.c @@ -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; -- 2.11.4.GIT