From 4819a14fecbedb145ff84715f9dd970a0f6b9618 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Mon, 27 Jan 2025 16:51:55 +0100 Subject: [PATCH] ch: Include unistd.h in ch_events.c There's a call to read() in the file but corresponding include of unistd.h is missing causing a build failure. Signed-off-by: Michal Privoznik Reviewed-by: Pavel Hrdina --- src/ch/ch_events.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ch/ch_events.c b/src/ch/ch_events.c index ba5b247c83..1cce30836a 100644 --- a/src/ch/ch_events.c +++ b/src/ch/ch_events.c @@ -20,6 +20,8 @@ #include +#include + #include "ch_domain.h" #include "ch_events.h" #include "ch_process.h"