From 02f5ebd062ac60dfb57b732fd125e60537933b2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Fri, 25 Oct 2013 00:19:05 +0200 Subject: [PATCH] dwrite/tests: Use BOOL type where appropriate. --- dlls/dwrite/tests/analyzer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/dwrite/tests/analyzer.c b/dlls/dwrite/tests/analyzer.c index d9daa033fc4..7a920b2f5ea 100644 --- a/dlls/dwrite/tests/analyzer.c +++ b/dlls/dwrite/tests/analyzer.c @@ -59,7 +59,7 @@ struct call_entry { struct testcontext { enum analysis_kind kind; - int todo; + BOOL todo; int *failcount; const char *file; int line; @@ -138,7 +138,7 @@ static void test_uint(UINT32 actual, UINT32 expected, const char *name, const st } static void ok_sequence_(struct call_sequence **seq, int sequence_index, - const struct call_entry *expected, const char *context, int todo, + const struct call_entry *expected, const char *context, BOOL todo, const char *file, int line) { struct call_sequence *call_seq = seq[sequence_index];