From fa9277746ffc22b457d3c9cf96b91c5c73d5efc4 Mon Sep 17 00:00:00 2001 From: Albert Cervin Date: Fri, 21 Nov 2025 21:52:14 +0100 Subject: Rename the standard fds in process To not collide with the globals for stdin, stdout and stderr. --- src/dged/process.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/dged/process.h') diff --git a/src/dged/process.h b/src/dged/process.h index cefec8c..179b9fa 100644 --- a/src/dged/process.h +++ b/src/dged/process.h @@ -13,9 +13,9 @@ typedef int fd_t; struct platform_process; struct process { uint64_t id; - fd_t stdin; - fd_t stdout; - fd_t stderr; + fd_t stdin_; + fd_t stdout_; + fd_t stderr_; struct platform_process *impl; }; -- cgit v1.2.3