From 7f4f065c64ab99c63f4e86d5b3310098c5b4f2f1 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 29 Jun 2022 09:10:00 -0400 Subject: Fix whitespace --- include/raul/Process.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/raul/Process.hpp b/include/raul/Process.hpp index d3ef0a9..e92effc 100644 --- a/include/raul/Process.hpp +++ b/include/raul/Process.hpp @@ -46,7 +46,7 @@ public: // (in child) // Close all nonstandard file descriptors - rlimit max_fds {}; + rlimit max_fds{}; getrlimit(RLIMIT_NOFILE, &max_fds); for (rlim_t fd = 3; fd < max_fds.rlim_cur; ++fd) { close(static_cast(fd)); -- cgit v1.2.1