kernel32: Quiet an extremely verbose stub fixme.

This commit is contained in:
Dan Kegel 2012-06-10 10:02:42 -07:00 committed by Alexandre Julliard
parent 9af12506b0
commit db48235880
1 changed files with 3 additions and 1 deletions

View File

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