From 2bddc977743d002b275915ed7c4120be7a0bc2df Mon Sep 17 00:00:00 2001 From: Dave Pickles Date: Sat, 10 Jul 1999 11:38:20 +0000 Subject: [PATCH] GetTimeFormat() should return LocalTime not SystemTime. --- ole/ole2nls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ole/ole2nls.c b/ole/ole2nls.c index 3dfbc1081e3..57ed2cc2834 100644 --- a/ole/ole2nls.c +++ b/ole/ole2nls.c @@ -3147,7 +3147,7 @@ GetTimeFormatA(LCID locale, /* in */ } if (xtime == NULL) /* NULL means use the current local time*/ - { GetSystemTime(&t); + { GetLocalTime(&t); thistime = &t; } else