Author: hbelusca Date: Fri May 15 23:16:58 2015 New Revision: 67751
URL: http://svn.reactos.org/svn/reactos?rev=67751&view=rev Log: Fix Mr.GCC
Modified: trunk/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/dos.c
Modified: trunk/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/dos.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/mvdm/ntvdm/dos/d... ============================================================================== --- trunk/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/dos.c [iso-8859-1] (original) +++ trunk/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/dos.c [iso-8859-1] Fri May 15 23:16:58 2015 @@ -903,7 +903,7 @@ { /* Get */ Return = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_IDATE, - &CountryCodeBuffer->TimeFormat, + (LPSTR)&CountryCodeBuffer->TimeFormat, sizeof(CountryCodeBuffer->TimeFormat)); if (Return == 0) { @@ -913,7 +913,7 @@ }
Return = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SCURRENCY, - &CountryCodeBuffer->CurrencySymbol, + (LPSTR)&CountryCodeBuffer->CurrencySymbol, sizeof(CountryCodeBuffer->CurrencySymbol)); if (Return == 0) { @@ -923,7 +923,7 @@ }
Return = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_STHOUSAND, - &CountryCodeBuffer->ThousandSep, + (LPSTR)&CountryCodeBuffer->ThousandSep, sizeof(CountryCodeBuffer->ThousandSep)); if (Return == 0) { @@ -933,7 +933,7 @@ }
Return = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SDECIMAL, - &CountryCodeBuffer->DecimalSep, + (LPSTR)&CountryCodeBuffer->DecimalSep, sizeof(CountryCodeBuffer->DecimalSep)); if (Return == 0) {