summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/floptool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/floptool.cpp')
-rw-r--r--src/tools/floptool.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/floptool.cpp b/src/tools/floptool.cpp
index e09ccccd349..e39273e0a12 100644
--- a/src/tools/floptool.cpp
+++ b/src/tools/floptool.cpp
@@ -435,6 +435,7 @@ static int hddir(int argc, char *argv[])
static int generic_read(image_handler &ih, const char *srcpath, const char *dstpath)
{
auto [fsm, fs] = ih.get_fs();
+ std::ignore = fsm;
std::vector<std::string> path = ih.path_split(srcpath);
auto [err, dfork] = fs->file_read(path);
@@ -533,6 +534,7 @@ static int generic_write(image_handler &ih, const char *srcpath, const char *dst
std::vector<std::string> path = ih.path_split(dstpath);
auto [err, meta] = fs->metadata(path);
+ std::ignore = meta;
if(err) {
fs::meta_data meta;