diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-28 14:17:30 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-28 14:17:30 +0200 |
| commit | 60b1ea28addbb5779bdc7221fbfc473440cb7663 (patch) | |
| tree | 4cda307010c179d908ce30bc0069fc8c78693f1c /src/tools | |
| parent | 084b655e3c5ececc7bdf2da5bd854b36acb2be4c (diff) | |
Further sanity check fixes.v2.15.66
Diffstat (limited to 'src/tools')
| -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 3fabe3e28..b8255468f 100644 --- a/src/tools/dcpomatic_disk_writer.cc +++ b/src/tools/dcpomatic_disk_writer.cc @@ -463,7 +463,7 @@ try bool on_drive_list = false; bool mounted = false; for (auto const& i: Drive::get()) { - if (i.device() == *device) { + if (i.device_for_write() == *device) { on_drive_list = true; mounted = i.mounted(); } |
