oleaut32/tests: Fix some pointer sizes in typelib tests for 64-bit.

This commit is contained in:
Alexandre Julliard 2009-05-20 20:19:59 +02:00
parent 603675d0d4
commit cdf8aeb0c8
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@
#include "tmarshal.h"
#define expect_eq(expr, value, type, format) { type _ret = (expr); ok((value) == _ret, #expr " expected " format " got " format "\n", value, _ret); }
#define expect_int(expr, value) expect_eq(expr, (int)value, int, "%d")
#define expect_hex(expr, value) expect_eq(expr, (int)value, int, "0x%x")
#define expect_int(expr, value) expect_eq(expr, (int)(value), int, "%d")
#define expect_hex(expr, value) expect_eq(expr, (int)(value), int, "0x%x")
#define expect_null(expr) expect_eq(expr, NULL, const void *, "%p")
#define expect_wstr_acpval(expr, value) \