hal: Don't cast zero.

oldstable
Michael Stefaniuc 2008-12-05 07:45:49 +01:00 committed by Alexandre Julliard
parent a5f1e9b62c
commit f142ad923a
1 changed files with 2 additions and 2 deletions

View File

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