From 530d23f023bcf1db16835bb5f93d4913e9ba8373 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 31 Dec 2023 01:28:35 +0100 Subject: [PATCH] Fix macOS build for previous. --- src/lib/cross_osx.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/cross_osx.cc b/src/lib/cross_osx.cc index 2455ad190..913b19103 100644 --- a/src/lib/cross_osx.cc +++ b/src/lib/cross_osx.cc @@ -399,7 +399,7 @@ Drive::get () LOG_DISK("Drive::get() found %1 drives:", drives.size()); for (auto const& drive: drives) { - LOG_DISK("%1 %2 mounted=%3", drive.description(), drive.device(), drive.mounted()); + LOG_DISK("%1 %2 mounted=%3", drive.description(), drive.device(), drive.mounted() ? "yes" : "no"); } return drives; -- 2.30.2