don't clear GetTimeFormat() flags when calling RosGetTimeFormat()

svn path=/trunk/; revision=7694
This commit is contained in:
Martin Fuchs 2004-01-16 23:08:38 +00:00
parent 1c99ac5f74
commit 182cd0377f

View file

@ -1,4 +1,4 @@
/* $Id: lang.c,v 1.6 2004/01/15 22:10:29 mf Exp $ /* $Id: lang.c,v 1.7 2004/01/16 23:08:38 mf Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT : ReactOS user mode libraries * PROJECT : ReactOS user mode libraries
@ -1230,8 +1230,7 @@ GetTimeFormatW (
return 0; return 0;
} }
return RosGetTimeFormat(Locale, dwFlags & LOCALE_STIMEFORMAT, lpTime, lpFormat, return RosGetTimeFormat(Locale, dwFlags, lpTime, lpFormat, lpTimeStr, cchTime);
lpTimeStr, cchTime);
} }