From: Guilhem Lavaux Date: Fri, 2 Jul 1999 17:49:59 +0000 (+0000) Subject: * Typo. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/44719c473b9da3a5f8d65fb13052929a942ac3ad * Typo. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2946 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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)