shell32/tests: Fix a copy and paste error (PVS-Studio).

This commit is contained in:
Michael Stefaniuc 2014-11-20 13:43:54 +01:00 committed by Alexandre Julliard
parent 69cc90957c
commit 61ed9130bf
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ static void test_get_file_info(void)
ok(rc == 1, "SHGetFileInfoA(c:\\nonexistent) should return 1, got 0x%x\n", rc); ok(rc == 1, "SHGetFileInfoA(c:\\nonexistent) should return 1, got 0x%x\n", rc);
if (rc) if (rc)
{ {
ok(strcpy(shfi.szDisplayName, "dummy") != 0, "SHGetFileInfoA(c:\\nonexistent) displayname is not set\n"); ok(strcmp(shfi.szDisplayName, "dummy"), "SHGetFileInfoA(c:\\nonexistent) displayname is not set\n");
ok(shfi.iIcon != 0xdeadbeef, "SHGetFileInfoA(c:\\nonexistent) iIcon is not set\n"); ok(shfi.iIcon != 0xdeadbeef, "SHGetFileInfoA(c:\\nonexistent) iIcon is not set\n");
} }