Skip to content

Commit

Permalink
fixed MT06831 (bogus casting in ccvf_format::file_formats) (nw)
Browse files Browse the repository at this point in the history
  • Loading branch information
firewave committed Jan 10, 2018
1 parent bb2bcb1 commit f2fedf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/formats/ccvf_dsk.cpp
Expand Up @@ -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 }
},
{}
};
Expand Down

0 comments on commit f2fedf0

Please sign in to comment.