From 914d1ec171eb0e27ced472aed2d05eae19b265da 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). --- 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 1be35c00d96..28108b81301 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -587,7 +587,7 @@ static int opendir_and_stat( *ret = NULL; *ret_sx = (struct statx) {}; - *ret_mountpoint = NULL; + *ret_mountpoint = false; return 0; } -- 2.47.3