msi: Downgrade an error.

This commit is contained in:
Hans Leidekker 2012-01-10 16:55:23 +01:00 committed by Alexandre Julliard
parent b13195ce4e
commit c7e5f0331f
1 changed files with 2 additions and 4 deletions

View File

@ -61,13 +61,11 @@ static BOOL source_matches_volume(MSIMEDIAINFO *mi, LPCWSTR source_root)
PathStripToRootW(root);
PathAddBackslashW(root);
if (!GetVolumeInformationW(root, volume_name, MAX_PATH + 1,
NULL, NULL, NULL, NULL, 0))
if (!GetVolumeInformationW(root, volume_name, MAX_PATH + 1, NULL, NULL, NULL, NULL, 0))
{
ERR("Failed to get volume information\n");
WARN("failed to get volume information for %s (%u)\n", debugstr_w(root), GetLastError());
return FALSE;
}
return !strcmpiW( mi->volume_label, volume_name );
}