=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: avrt: Use BOOL type where appropriate.

Alexandre Julliard julliard at winehq.org
Wed Nov 6 11:34:44 CST 2013


Module: wine
Branch: master
Commit: f249638294362754016738c1a08dd6e6d8931f3f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f249638294362754016738c1a08dd6e6d8931f3f

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Tue Nov  5 22:59:06 2013 +0100

avrt: Use BOOL type where appropriate.

---

 dlls/avrt/main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/avrt/main.c b/dlls/avrt/main.c
index 5c9ef4a..8a11025 100644
--- a/dlls/avrt/main.c
+++ b/dlls/avrt/main.c
@@ -86,11 +86,11 @@ HANDLE WINAPI AvSetMmThreadCharacteristicsW(LPCWSTR TaskName, LPDWORD TaskIndex)
 BOOL WINAPI AvRevertMmThreadCharacteristics(HANDLE AvrtHandle)
 {
     FIXME("(%p): stub\n", AvrtHandle);
-    return 1;
+    return TRUE;
 }
 
 BOOL WINAPI AvSetMmThreadPriority(HANDLE AvrtHandle, AVRT_PRIORITY prio)
 {
     FIXME("(%p)->(%u) stub\n", AvrtHandle, prio);
-    return 1;
+    return TRUE;
 }




More information about the wine-cvs mailing list