From: Luca Boccassi Date: Fri, 3 Apr 2026 14:21:53 +0000 (+0100) Subject: Fix build with -fno-semantic-interposition X-Git-Tag: v261-rc1~622 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47257677303ed6c1679e6680d76463beb409ea18;p=thirdparty%2Fsystemd.git Fix build with -fno-semantic-interposition Fixes https://github.com/systemd/systemd/issues/41494 Follow-up for 44cc82bfbf160bba2562bec08ffacbd587771210 --- diff --git a/src/shared/mount-util.c b/src/shared/mount-util.c index 02f63f802a4..f7bba5d080c 100644 --- a/src/shared/mount-util.c +++ b/src/shared/mount-util.c @@ -2067,7 +2067,7 @@ int make_fsmount( r = extract_first_word(&p, &word, ",", EXTRACT_KEEP_QUOTE); if (r < 0) - return log_full_errno(error_log_level, r, "Failed to parse mount option string \"%s\": %m", o); + return log_full_errno(error_log_level, r, "Failed to parse mount option string \"%s\": %m", strempty(o)); if (r == 0) break;