From f423ef496714423a8b87b69f33aa7f6b81217e27 Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Wed, 9 Sep 2020 18:27:58 -0700 Subject: [PATCH] Fix reversion in fea497ac causing fatal 'variable not used' message --- oscar/mainwindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index 794df17c..d8fba199 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -818,9 +818,11 @@ QStringList getDriveList() #define VFAT "vfat" #elif defined(Q_OS_WIN) #define VFAT "FAT32" + Q_UNUSED(crostini_detected) #elif defined(Q_OS_MAC) #define VFAT "msdos" -#endif + Q_UNUSED(crostini_detected) +#endif foreach (const QStorageInfo &storage, QStorageInfo::mountedVolumes()) { if (storage.isValid() && storage.isReady()) { #ifdef DEBUG_SDCARD