Build fix: missing stdio.h include in signal-helper.hpp
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 15 Dec 2022 22:39:09 +0000 (17:39 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Mon, 16 Jan 2023 19:49:24 +0000 (14:49 -0500)
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 <jeremie.galarneau@efficios.com>
Change-Id: Id402346fcd727f23d382697d06d3886a915aa014

tests/utils/testapp/signal-helper.hpp

index ceadcb37277225bab6adf92667032888f6be49a0..cff564951015382fde8b97ca20b6b3a67155284d 100644 (file)
@@ -9,6 +9,7 @@
 #define LTTNG_TESTAPP_SIGNAL_HELPER_H
 
 #include <signal.h>
+#include <stdio.h>
 
 static volatile int should_quit;
 
This page took 0.025727 seconds and 4 git commands to generate.