From ee7e9ac11c0644c7e5332c927bb83c5e55985c89 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Fri, 28 Feb 2025 20:25:05 +0900 Subject: [PATCH] tmpfiles: fix output value assignment Fixes a bug in 7eeda1da90c79ba420a6d82c1d9589b23048d79f (v256). (cherry picked from commit 914d1ec171eb0e27ced472aed2d05eae19b265da) --- src/tmpfiles/tmpfiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index b699a1e5be9..0e40896ec64 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -586,7 +586,7 @@ static int opendir_and_stat( *ret = NULL; *ret_sx = (struct statx) {}; - *ret_mountpoint = NULL; + *ret_mountpoint = false; return 0; } -- 2.47.3