Commit 81543b79 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntdll: Change a noisy FIXME to a WARN.

parent 13d6aa2b
......@@ -1307,7 +1307,8 @@ NTSTATUS WINAPI NtPowerInformation(
return STATUS_SUCCESS;
}
default:
FIXME("Unimplemented NtPowerInformation action: %d\n", InformationLevel);
/* FIXME: Needed by .NET Framework */
WARN("Unimplemented NtPowerInformation action: %d\n", InformationLevel);
return STATUS_NOT_IMPLEMENTED;
}
}
......
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