Change FIXME to WARN.

This commit is contained in:
Robert Reif 2005-05-06 19:32:36 +00:00 committed by Alexandre Julliard
parent 821d4c4645
commit 723a67d1f8
1 changed files with 2 additions and 2 deletions

View File

@ -434,7 +434,7 @@ MMRESULT WINAPI timeBeginPeriod(UINT wPeriod)
if (wPeriod > MMSYSTIME_MININTERVAL)
{
FIXME("Stub; we set our timer resolution at minimum\n");
WARN("Stub; we set our timer resolution at minimum\n");
}
return 0;
@ -450,7 +450,7 @@ MMRESULT WINAPI timeEndPeriod(UINT wPeriod)
if (wPeriod > MMSYSTIME_MININTERVAL)
{
FIXME("Stub; we set our timer resolution at minimum\n");
WARN("Stub; we set our timer resolution at minimum\n");
}
return 0;
}