kernel32: Silence a fixme in GetNativeSystemInfo.

This commit is contained in:
Stefan Leichter 2007-12-23 11:06:22 +01:00 committed by Alexandre Julliard
parent bfffb4f461
commit 20c0ba2341
1 changed files with 6 additions and 1 deletions

View File

@ -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);
}