From dc5af20b0cbb6f666e0777bac0d57cb775d9920c Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 21 Jan 2025 16:08:47 +0100 Subject: [PATCH] tree-wide: always include our own headers with "" rather than <> We got this almost always right. Fix this for a few outliers. --- src/analyze/analyze-time-data.h | 2 +- src/home/homed-operation.h | 2 +- src/shared/common-signal.h | 2 +- src/test/test-mempress.c | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/analyze/analyze-time-data.h b/src/analyze/analyze-time-data.h index e7ffd8549d..fd228b5929 100644 --- a/src/analyze/analyze-time-data.h +++ b/src/analyze/analyze-time-data.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once -#include +#include "sd-bus.h" #include "time-util.h" #include "unit-def.h" diff --git a/src/home/homed-operation.h b/src/home/homed-operation.h index af165bb4a5..e190e8e970 100644 --- a/src/home/homed-operation.h +++ b/src/home/homed-operation.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once -#include +#include "sd-bus.h" #include "user-record.h" diff --git a/src/shared/common-signal.h b/src/shared/common-signal.h index 1fe7b7623a..3fd7d83299 100644 --- a/src/shared/common-signal.h +++ b/src/shared/common-signal.h @@ -3,7 +3,7 @@ #include -#include +#include "sd-event.h" /* All our long-running services should implement a SIGRTMIN+18 handler that can be used to trigger certain * actions that affect service runtime. The specific action is indicated via the "value integer" you can pass diff --git a/src/test/test-mempress.c b/src/test/test-mempress.c index dfbd63e601..6bbc485de6 100644 --- a/src/test/test-mempress.c +++ b/src/test/test-mempress.c @@ -5,8 +5,8 @@ #include #include -#include -#include +#include "sd-bus.h" +#include "sd-event.h" #include "bus-locator.h" #include "bus-wait-for-jobs.h"