From: Lennart Poettering Date: Tue, 21 Jan 2025 15:08:47 +0000 (+0100) Subject: tree-wide: always include our own headers with "" rather than <> X-Git-Tag: v258-rc1~1539 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dc5af20b0cbb6f666e0777bac0d57cb775d9920c;p=thirdparty%2Fsystemd.git tree-wide: always include our own headers with "" rather than <> We got this almost always right. Fix this for a few outliers. --- diff --git a/src/analyze/analyze-time-data.h b/src/analyze/analyze-time-data.h index e7ffd8549d8..fd228b59293 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 af165bb4a52..e190e8e9704 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 1fe7b7623a4..3fd7d832991 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 dfbd63e6014..6bbc485de6d 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"