From 61c66c1a7557556c51a657cefcec67ec27a7ba2c Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20Va=C5=A1ek?= Date: Thu, 30 Oct 2025 15:15:59 +0000 Subject: [PATCH] Doc: Fix boolean type --- src/knot/common/process.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/knot/common/process.h b/src/knot/common/process.h index bdc7289c69..f64e77b39b 100644 --- a/src/knot/common/process.h +++ b/src/knot/common/process.h @@ -32,8 +32,8 @@ void pid_cleanup(void); * * \param pid Process ID. * - * \retval 1 if running. - * \retval 0 if not running (or error). + * \retval true if running. + * \retval false if not running (or error). */ bool pid_running(pid_t pid); -- 2.47.3