summaryrefslogtreecommitdiff
path: root/src/basic/path-util.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2017-12-08 20:52:38 +0100
committerLennart Poettering <lennart@poettering.net>2017-12-11 16:05:40 +0100
commit234519ae6d6821ae5e83bcddb211905ef4de5700 (patch)
tree5335ad6ea093f0829bb871c2cbf83b354e53d402 /src/basic/path-util.c
parent4a0e9289bf443fec9fc56af25f90e2a100ba7a41 (diff)
downloadsystemd-234519ae6d6821ae5e83bcddb211905ef4de5700.tar.gz
tree-wide: drop a few == NULL and != NULL comparison
Our CODING_STYLE suggests not comparing with NULL, but relying on C's downgrade-to-bool feature for that. Fix up some code to match these guidelines. (This is not comprehensive, the coccinelle output for this is unfortunately kinda borked)
Diffstat (limited to 'src/basic/path-util.c')
-rw-r--r--src/basic/path-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/path-util.c b/src/basic/path-util.c
index fe20799ba2..ab4778d4ed 100644
--- a/src/basic/path-util.c
+++ b/src/basic/path-util.c
@@ -538,7 +538,7 @@ bool paths_check_timestamp(const char* const* paths, usec_t *timestamp, bool upd
assert(timestamp);
- if (paths == NULL)
+ if (!paths)
return false;
STRV_FOREACH(i, paths) {