From f2fedf0c8c38b6b7c24411b5cfb30ad9914551d2 Mon Sep 17 00:00:00 2001 From: firewave Date: Wed, 10 Jan 2018 20:41:35 +0100 Subject: [PATCH] fixed MT06831 (bogus casting in ccvf_format::file_formats) (nw) --- src/lib/formats/ccvf_dsk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }, {} };