ddraw/tests: Use BOOL type where appropriate

Frédéric Delanoy frederic.delanoy at gmail.com
Thu Jan 2 19:03:29 CST 2014


---
 dlls/ddraw/tests/d3d.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/ddraw/tests/d3d.c b/dlls/ddraw/tests/d3d.c
index effe743..25da038 100644
--- a/dlls/ddraw/tests/d3d.c
+++ b/dlls/ddraw/tests/d3d.c
@@ -3193,11 +3193,11 @@ static void FindDevice(void)
     static const struct
     {
         const GUID *guid;
-        int todo;
+        BOOL todo;
     } deviceGUIDs[] =
     {
-        {&IID_IDirect3DRampDevice, 1},
-        {&IID_IDirect3DRGBDevice},
+        {&IID_IDirect3DRampDevice, TRUE},
+        {&IID_IDirect3DRGBDevice,  FALSE},
     };
 
     static const GUID *nonexistent_deviceGUIDs[] = {&IID_IDirect3DMMXDevice,
-- 
1.8.5.2




More information about the wine-patches mailing list