Commit de66f257 authored by Paul Chitescu's avatar Paul Chitescu Committed by Alexandre Julliard

ntdll: Print desired version of missing dependent assemblies.

parent 6b6d18d7
......@@ -2022,7 +2022,9 @@ static NTSTATUS parse_depend_manifests(struct actctx_loader* acl)
{
if (!acl->dependencies[i].optional)
{
FIXME( "Could not find dependent assembly %s\n", debugstr_w(acl->dependencies[i].name) );
FIXME( "Could not find dependent assembly %s (%s)\n",
debugstr_w(acl->dependencies[i].name),
debugstr_version(&acl->dependencies[i].version) );
status = STATUS_SXS_CANT_GEN_ACTCTX;
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment