mirror of
https://github.com/reactos/wine.git
synced 2025-02-19 04:18:09 +00:00
ntdll: Print the expected and found assembly versions if no compatible version is found.
This commit is contained in:
parent
9ed42d2709
commit
83ee191f7e
@ -1398,7 +1398,11 @@ static BOOL parse_assembly_elem(xmlbuf_t* xmlbuf, struct actctx_loader* acl,
|
|||||||
if (assembly->type == ASSEMBLY_MANIFEST &&
|
if (assembly->type == ASSEMBLY_MANIFEST &&
|
||||||
memcmp(&assembly->id.version, &expected_ai->version, sizeof(assembly->id.version)))
|
memcmp(&assembly->id.version, &expected_ai->version, sizeof(assembly->id.version)))
|
||||||
{
|
{
|
||||||
FIXME("wrong version for assembly manifest\n");
|
FIXME("wrong version for assembly manifest: %u.%u.%u.%u / %u.%u.%u.%u\n",
|
||||||
|
expected_ai->version.major, expected_ai->version.minor,
|
||||||
|
expected_ai->version.build, expected_ai->version.revision,
|
||||||
|
assembly->id.version.major, assembly->id.version.minor,
|
||||||
|
assembly->id.version.build, assembly->id.version.revision);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
else if (assembly->type == ASSEMBLY_SHARED_MANIFEST &&
|
else if (assembly->type == ASSEMBLY_SHARED_MANIFEST &&
|
||||||
|
Loading…
x
Reference in New Issue
Block a user