summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author ajrhacker <ajrhacker@users.noreply.github.com>2018-01-10 15:18:06 -0500
committer GitHub <noreply@github.com>2018-01-10 15:18:06 -0500
commit68af4962e19662949bfc9cc64d6f24c8d4f7da38 (patch)
treeadd673699e814c49d4e3cead392acb9e4b10799b
parent3ea871c47862e929ee3aa15e06d298ef4c076619 (diff)
parentf2fedf0c8c38b6b7c24411b5cfb30ad9914551d2 (diff)
Merge pull request #3038 from firewave/ccvf
fixed MT06831 (bogus casting in ccvf_format::file_formats) (nw)
-rw-r--r--src/lib/formats/ccvf_dsk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/formats/ccvf_dsk.cpp b/src/lib/formats/ccvf_dsk.cpp
index 12acbeea37a..febe78d45d2 100644
--- a/src/lib/formats/ccvf_dsk.cpp
+++ b/src/lib/formats/ccvf_dsk.cpp
@@ -39,7 +39,7 @@ const char *ccvf_format::extensions() const
const ccvf_format::format ccvf_format::file_formats[] = {
{
floppy_image::FF_525, floppy_image::SSSD,
- (int) (1./(9600*8))*1000000000, 10, 41, 1, 128, {}, 0, { 0,5,1,6,2,7,3,8,4,9 }
+ (int) ((1./(9600*8))*1000000000), 10, 41, 1, 128, {}, 0, { 0,5,1,6,2,7,3,8,4,9 }
},
{}
};