From da1439126af1b061238fc27ed48a2c5c5be18281 Mon Sep 17 00:00:00 2001 From: apio Date: Fri, 9 Jun 2023 23:35:23 +0200 Subject: [PATCH] libos: Correct wrong manpage section for execve() --- libos/include/os/File.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libos/include/os/File.h b/libos/include/os/File.h index b4df45a6..5e54b556 100644 --- a/libos/include/os/File.h +++ b/libos/include/os/File.h @@ -98,7 +98,7 @@ namespace os static SharedPtr standard_error(); /** - * @brief Make this File object automatically close on the next call to execve(3). + * @brief Make this File object automatically close on the next call to execve(2). */ void set_close_on_exec();