Commit 20c0ba23 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

kernel32: Silence a fixme in GetNativeSystemInfo.

parent bfffb4f4
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment