From b7f9d7e14d3b8076bf3bcb2e6da4a5ceaecbe74a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Fri, 15 May 2015 23:16:58 +0000 Subject: [PATCH] Fix Mr.GCC svn path=/trunk/; revision=67751 --- reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/dos.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/dos.c b/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/dos.c index 54bf5ca726d..1405962b960 100644 --- a/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/dos.c +++ b/reactos/subsystems/mvdm/ntvdm/dos/dos32krnl/dos.c @@ -903,7 +903,7 @@ VOID WINAPI DosInt21h(LPWORD Stack) { /* Get */ Return = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_IDATE, - &CountryCodeBuffer->TimeFormat, + (LPSTR)&CountryCodeBuffer->TimeFormat, sizeof(CountryCodeBuffer->TimeFormat)); if (Return == 0) { @@ -913,7 +913,7 @@ VOID WINAPI DosInt21h(LPWORD Stack) } Return = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SCURRENCY, - &CountryCodeBuffer->CurrencySymbol, + (LPSTR)&CountryCodeBuffer->CurrencySymbol, sizeof(CountryCodeBuffer->CurrencySymbol)); if (Return == 0) { @@ -923,7 +923,7 @@ VOID WINAPI DosInt21h(LPWORD Stack) } Return = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_STHOUSAND, - &CountryCodeBuffer->ThousandSep, + (LPSTR)&CountryCodeBuffer->ThousandSep, sizeof(CountryCodeBuffer->ThousandSep)); if (Return == 0) { @@ -933,7 +933,7 @@ VOID WINAPI DosInt21h(LPWORD Stack) } Return = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SDECIMAL, - &CountryCodeBuffer->DecimalSep, + (LPSTR)&CountryCodeBuffer->DecimalSep, sizeof(CountryCodeBuffer->DecimalSep)); if (Return == 0) {