http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a5f1e9b
)
hal: Don't cast zero.
author
Michael Stefaniuc
<mstefani@redhat.de>
Fri, 5 Dec 2008 06:45:49 +0000
(07:45 +0100)
committer
Alexandre Julliard
<julliard@winehq.org>
Fri, 5 Dec 2008 11:36:11 +0000
(12:36 +0100)
dlls/hal/hal.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/hal/hal.c
b/dlls/hal/hal.c
index 0b6480988f98951df933091f401ee4fcfbf98319..6390edf42b61a3577e80b6ab8945621f5e4bcd8c 100644
(file)
--- 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;
}