diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-31 04:15:29 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-07-31 08:56:03 -0400 |
commit | 73f860db9893deab6aebceb53dd7d0deb662e832 (patch) | |
tree | 28f05ab4f0bf9af495c807a03a7b0037a6d93fb3 /src/shared | |
parent | 5d459d6b07206963a022e9a95ea9d8c18dc0eab8 (diff) |
Always prefer our headers to system headers
In practice this shouldn't make much difference, but
sometimes our headers might be newer, and we want to
test them.
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/condition-util.c | 2 | ||||
-rw-r--r-- | src/shared/logs-show.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/condition-util.c b/src/shared/condition-util.c index b52dcc52f9..ff4a8ecd15 100644 --- a/src/shared/condition-util.c +++ b/src/shared/condition-util.c @@ -26,7 +26,7 @@ #include <sys/statvfs.h> #include <fnmatch.h> -#include <systemd/sd-id128.h> +#include "systemd/sd-id128.h" #include "util.h" #include "condition-util.h" #include "virt.h" diff --git a/src/shared/logs-show.h b/src/shared/logs-show.h index 3a99160f1e..187ee595fb 100644 --- a/src/shared/logs-show.h +++ b/src/shared/logs-show.h @@ -25,7 +25,7 @@ #include <unistd.h> #include <sys/types.h> -#include <systemd/sd-journal.h> +#include "systemd/sd-journal.h" #include "util.h" #include "output-mode.h" |