diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-12-31 01:28:35 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-12-31 01:28:35 +0100 |
| commit | 530d23f023bcf1db16835bb5f93d4913e9ba8373 (patch) | |
| tree | ff1660b43d055cc26cb19959aa0440608b14ae45 | |
| parent | 24b83514fed0683008bff23c6fd9c1d990a30b02 (diff) | |
Fix macOS build for previous.
| -rw-r--r-- | src/lib/cross_osx.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
