summaryrefslogtreecommitdiffstats
path: root/tests/testsuminfo.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-10-23 10:53:00 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-06 20:26:29 +0100
commita1b24a6892f5d776a74d2dd474c6e5c89111ba02 (patch)
treed7145b130f1ab018dfbdd54d3f94e04058940abd /tests/testsuminfo.c
parent73d6f4144fc246161652e43351253a7e9a8ef33e (diff)
downloadmsitools-a1b24a6892f5d776a74d2dd474c6e5c89111ba02.tar.gz
msitools-a1b24a6892f5d776a74d2dd474c6e5c89111ba02.tar.xz
msitools-a1b24a6892f5d776a74d2dd474c6e5c89111ba02.zip
make MSIOBJECT arguments explicitly pointers
Diffstat (limited to 'tests/testsuminfo.c')
-rw-r--r--tests/testsuminfo.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/testsuminfo.c b/tests/testsuminfo.c
index 194f040..28f05bd 100644
--- a/tests/testsuminfo.c
+++ b/tests/testsuminfo.c
@@ -33,7 +33,8 @@ static const WCHAR msifileW[] = {
static void test_suminfo(void)
{
- PMSIOBJECT hdb = 0, hsuminfo;
+ MSIOBJECT *hdb = 0;
+ MSIOBJECT *hsuminfo;
UINT r, count, type;
DWORD sz;
INT val;
@@ -362,7 +363,8 @@ static void test_create_database_binary(void)
static void test_summary_binary(void)
{
- PMSIOBJECT hdb = 0, hsuminfo = 0;
+ MSIOBJECT *hdb = 0;
+ MSIOBJECT *hsuminfo = 0;
UINT r, type, count;
INT ival;
DWORD sz;