summaryrefslogtreecommitdiff
path: root/src/basic/missing_capability.h
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-04-14 13:17:22 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-04-14 16:19:54 +0200
commit47350c5fb64e7c76e071a928bf9251dfe79d3ab3 (patch)
tree90b3755344724e68f54fd4832e4f18fcc23e51ba /src/basic/missing_capability.h
parent5600a26114d7c93592d3b030e0d02be62919ad51 (diff)
downloadsystemd-47350c5fb64e7c76e071a928bf9251dfe79d3ab3.tar.gz
meson: simplify the BUILD_MODE conditional
Using a enum is all nice and generic, but at this point it seems unlikely that we'll add further build modes. But having an enum means that we need to include the header file with the enumeration whenerever the conditional is used. I want to use the conditional in log.h, which makes it hard to avoid circular imports.
Diffstat (limited to 'src/basic/missing_capability.h')
-rw-r--r--src/basic/missing_capability.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/missing_capability.h b/src/basic/missing_capability.h
index 4cf31cb839..5adda554e5 100644
--- a/src/basic/missing_capability.h
+++ b/src/basic/missing_capability.h
@@ -27,7 +27,7 @@
#ifdef CAP_LAST_CAP
# if CAP_LAST_CAP > SYSTEMD_CAP_LAST_CAP
-# if BUILD_MODE == BUILD_MODE_DEVELOPER && defined(TEST_CAPABILITY_C)
+# if BUILD_MODE_DEVELOPER && defined(TEST_CAPABILITY_C)
# warning "The capability list here is outdated"
# endif
# else