From fe7de4bfe0b8c1ea69f8b53ad7d670876710c70c Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Wed, 23 Oct 2019 20:27:12 -0400 Subject: [PATCH] sessiond: build fails in --without-lttng-ust configuration MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The include of macros.h was changed when syncing with the latest usb-abi.h header and caused the build to fail in the --without-lttng-ust configuration. Changed the include to refer to common/macros.h. Signed-off-by: Jérémie Galarneau --- src/bin/lttng-sessiond/ust-abi-internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/lttng-sessiond/ust-abi-internal.h b/src/bin/lttng-sessiond/ust-abi-internal.h index 4cc3eafc2..8944d0593 100644 --- a/src/bin/lttng-sessiond/ust-abi-internal.h +++ b/src/bin/lttng-sessiond/ust-abi-internal.h @@ -28,7 +28,7 @@ #define LTTNG_UST_ABI_INTERNAL_H #include -#include +#include #ifndef LTTNG_PACKED #error "LTTNG_PACKED should be defined" -- 2.34.1