From 52e345b9ac912d033c2a2c25a170a01cf209839d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Thu, 15 Dec 2022 17:39:09 -0500 Subject: [PATCH] Build fix: missing stdio.h include in signal-helper.hpp MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit A follow-up commit changes the order of inclusions and fails to build since signal-helper.hpp doesn't include stdio.h for its use of perror(). Signed-off-by: Jérémie Galarneau Change-Id: Id402346fcd727f23d382697d06d3886a915aa014 --- tests/utils/testapp/signal-helper.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/utils/testapp/signal-helper.hpp b/tests/utils/testapp/signal-helper.hpp index ceadcb372..cff564951 100644 --- a/tests/utils/testapp/signal-helper.hpp +++ b/tests/utils/testapp/signal-helper.hpp @@ -9,6 +9,7 @@ #define LTTNG_TESTAPP_SIGNAL_HELPER_H #include +#include static volatile int should_quit; -- 2.34.1