Commit db482358 authored by Dan Kegel's avatar Dan Kegel Committed by Alexandre Julliard

kernel32: Quiet an extremely verbose stub fixme.

parent 9af12506
......@@ -377,7 +377,9 @@ BOOL WINAPI SetThreadPriorityBoost(
*/
BOOL WINAPI SetThreadStackGuarantee(PULONG stacksize)
{
FIXME("(%p): stub\n", stacksize);
static int once;
if (once++ == 0)
FIXME("(%p): stub\n", stacksize);
return TRUE;
}
......
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