summaryrefslogtreecommitdiffstats
path: root/tests/testsuminfo.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-10-23 11:56:40 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-06 20:30:30 +0100
commite4c3e73623b9c546d4b356f7c207b0d2c8c3f750 (patch)
treea7958961a2f2c16766e4fbb9b666d39524c29f90 /tests/testsuminfo.c
parentd9990bc09cafe1edd2175d4c6b6bb9d103dff30a (diff)
downloadmsitools-e4c3e73623b9c546d4b356f7c207b0d2c8c3f750.tar.gz
msitools-e4c3e73623b9c546d4b356f7c207b0d2c8c3f750.tar.xz
msitools-e4c3e73623b9c546d4b356f7c207b0d2c8c3f750.zip
do not use lstr functions
Diffstat (limited to 'tests/testsuminfo.c')
-rw-r--r--tests/testsuminfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testsuminfo.c b/tests/testsuminfo.c
index 01b3f4c..99ae818 100644
--- a/tests/testsuminfo.c
+++ b/tests/testsuminfo.c
@@ -394,7 +394,7 @@ static void test_summary_binary(void)
type = 0;
r = MsiSummaryInfoGetProperty(hsuminfo, MSI_PID_LASTPRINTED, &type, NULL, NULL, sval, &sz);
ok(r == ERROR_SUCCESS, "MsiSummaryInfoGetProperty failed\n");
- ok(!lstrcmpA(sval, "") || !lstrcmpA(sval, "7"),
+ ok(!strcmp(sval, "") || !strcmp(sval, "7"),
"Expected empty string or \"7\", got \"%s\"\n", sval);
todo_wine {
ok(type == VT_LPSTR, "Expected VT_LPSTR, got %d\n", type);