diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-11-03 20:59:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-03 20:59:20 +0100 |
commit | 493fd52f1ada36bfe63301d4bb50f7fd2b38c670 (patch) | |
tree | 19864f5568a2fe48181c1b3f33c46b4db36dd768 /src/basic/mount-util.c | |
parent | Revert "sd-bus: use PRIu64 instead of casting" (#4556) (diff) | |
parent | nspawn: use the return value from asprintf instead of checking the pointer (diff) | |
download | systemd-493fd52f1ada36bfe63301d4bb50f7fd2b38c670.tar.xz systemd-493fd52f1ada36bfe63301d4bb50f7fd2b38c670.zip |
Merge pull request #4510 from keszybz/tree-wide-cleanups
Tree wide cleanups
Diffstat (limited to 'src/basic/mount-util.c')
-rw-r--r-- | src/basic/mount-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/mount-util.c b/src/basic/mount-util.c index c8f8022578..5d37fb48be 100644 --- a/src/basic/mount-util.c +++ b/src/basic/mount-util.c @@ -642,7 +642,7 @@ static char* mount_flags_to_string(long unsigned flags) { FLAG(MS_I_VERSION), FLAG(MS_STRICTATIME), FLAG(MS_LAZYTIME), - y, NULL); + y); if (!x) return NULL; if (!y) |