Michael Stefaniuc : hal: Don't cast zero.
Module: wine Branch: master Commit: f142ad923add383f1cae80e96d294d3934684a47 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f142ad923add383f1cae80e96d... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Fri Dec 5 07:45:49 2008 +0100 hal: Don't cast zero. --- dlls/hal/hal.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/hal/hal.c b/dlls/hal/hal.c index 0b64809..6390edf 100644 --- a/dlls/hal/hal.c +++ b/dlls/hal/hal.c @@ -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; }
participants (1)
-
Alexandre Julliard