From 6dea98bac4b2e918b232a6d57d717be026efc9e1 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Fri, 9 Feb 2024 13:10:42 +0000 Subject: [PATCH] glib-unix: Fix reference to FD_CLOEXEC in docs for g_unix_pipe_open() The docs for this should match the docs for `g_unix_open_pipe()`, which it calls. Inspired by !3911. Signed-off-by: Philip Withnall --- glib/glib-unix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/glib-unix.h b/glib/glib-unix.h index c58769ec2..4139cd2d2 100644 --- a/glib/glib-unix.h +++ b/glib/glib-unix.h @@ -173,7 +173,7 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS /** * g_unix_pipe_open: * @self: A pair of file descriptors - * @flags: Flags to pass to g_unix_open_pipe(), typically `FD_CLOEXEC` + * @flags: Flags to pass to g_unix_open_pipe(), typically `O_CLOEXEC` * @error: Used to report an error on failure * * Open a pipe. This is the same as g_unix_open_pipe(), but uses the