diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-27 14:31:35 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-12-27 14:31:35 +0100 |
| commit | 7205c0fa5e7350589122e5ea0bcdca1e31c18319 (patch) | |
| tree | 0a1e8532006d2ec5ec0d0168fa481b6aa88547c4 | |
| parent | 3aeb706dc03c5d59c565af5ef8ed375b101a6047 (diff) | |
fixup! fixup! Replace String::compose with fmt::format().
| -rw-r--r-- | src/tools/dcpomatic_disk_writer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_disk_writer.cc b/src/tools/dcpomatic_disk_writer.cc index 4dbdf5c7f..060ed3dee 100644 --- a/src/tools/dcpomatic_disk_writer.cc +++ b/src/tools/dcpomatic_disk_writer.cc @@ -261,7 +261,7 @@ try LOG_DISK("Here we go writing these to %1", device); for (auto dcp: dcp_paths) { - LOG_DISK(" %{}", dcp); + LOG_DISK(" %{}", dcp.string()); } request_privileges ( |
