Commit f142ad92 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

hal: Don't cast zero.

parent a5f1e9b6
......@@ -62,7 +62,7 @@ KIRQL WINAPI KfAcquireSpinLock(PKSPIN_LOCK SpinLock)
{
FIXME( "(%p) stub!\n", SpinLock );
return (KIRQL)0;
return 0;
}
......@@ -86,7 +86,7 @@ KIRQL WINAPI KfRaiseIrql(KIRQL NewIrql)
{
FIXME( "(%u) stub!\n", NewIrql );
return (KIRQL)0;
return 0;
}
......
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