X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e03bcf0d4078469128337dbbd880ea2135dc4718..3bcf00abd7aa6b515e776e18b3e295467a693959:/src/common/extended.c?ds=inline diff --git a/src/common/extended.c b/src/common/extended.c index 3380060505..42225997a2 100644 --- a/src/common/extended.c +++ b/src/common/extended.c @@ -96,7 +96,7 @@ void ConvertToIeeeExtended(double num, unsigned char *bytes) bytes[6] = (unsigned char) ((loMant >> 24) & 0xff); bytes[7] = (unsigned char) ((loMant >> 16) & 0xff); bytes[8] = (unsigned char) ((loMant >> 8) & 0xff); - bytes[9] = (unsigned char) (loMant & 0xff; + bytes[9] = (unsigned char) (loMant & 0xff); #ifdef _MSC_VER #pragma warning(default: 4244)