This is an automated email from the ASF dual-hosted git repository.
masaori pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 9a93757 tscore/eventnotify: change fcntl include path
9a93757 is described below
commit 9a93757ad4eafa51c93143afe331a4840c14167b
Author: Johan BergstroĢm <[email protected]>
AuthorDate: Fri Mar 1 20:05:17 2019 -0300
tscore/eventnotify: change fcntl include path
The default include path for `fnctl.h` changed some time in the 90's.
---
src/tscore/EventNotify.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tscore/EventNotify.cc b/src/tscore/EventNotify.cc
index dc1e152..a18decc 100644
--- a/src/tscore/EventNotify.cc
+++ b/src/tscore/EventNotify.cc
@@ -33,7 +33,7 @@
#ifdef HAVE_EVENTFD
#include <sys/eventfd.h>
-#include <sys/fcntl.h>
+#include <fcntl.h>
#include <sys/epoll.h>
#endif