From 9d07765823026b3995de042550b636c249ff4df1 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 14 Nov 2019 23:18:26 -0500 Subject: [PATCH] Ensures proper precedence of * over %. --- Storage/Disk/DiskImage/Formats/ST.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Storage/Disk/DiskImage/Formats/ST.cpp b/Storage/Disk/DiskImage/Formats/ST.cpp index fd1a251f2..2b3a069f2 100644 --- a/Storage/Disk/DiskImage/Formats/ST.cpp +++ b/Storage/Disk/DiskImage/Formats/ST.cpp @@ -19,7 +19,7 @@ ST::ST(const std::string &file_name) : MFMSectorDump(file_name) { // Very loose validation: the file needs to be a whole number of tracks, // and not more than 160 of them. const auto stats = file_.stats(); - if(stats.st_size % 512*10) throw Error::InvalidFormat; + if(stats.st_size % (512*10)) throw Error::InvalidFormat; if(stats.st_size > 512*10*160) throw Error::InvalidFormat; // Head count: 2 if there are more than 80 tracks. Otherwise 1.