Module: wine Branch: master Commit: 20c0ba23413de5a945ecdaaab2a8f78b12fb5a70 URL: http://source.winehq.org/git/wine.git/?a=commit;h=20c0ba23413de5a945ecdaaab2...
Author: Stefan Leichter Stefan.Leichter@camline.com Date: Sun Dec 23 11:06:22 2007 +0100
kernel32: Silence a fixme in GetNativeSystemInfo.
---
dlls/kernel32/cpu.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/dlls/kernel32/cpu.c b/dlls/kernel32/cpu.c index c7d366e..eed4cdd 100644 --- a/dlls/kernel32/cpu.c +++ b/dlls/kernel32/cpu.c @@ -808,7 +808,12 @@ VOID WINAPI GetSystemInfo( VOID WINAPI GetNativeSystemInfo( LPSYSTEM_INFO si /* [out] Destination for system information, may not be NULL */) { - FIXME("(%p) using GetSystemInfo()\n", si); + static BOOL reported = FALSE; + if (!reported) { + FIXME("(%p) using GetSystemInfo()\n", si); + reported = TRUE; + } else + TRACE("(%p) using GetSystemInfo()\n", si); GetSystemInfo(si); }