Module: wine Branch: master Commit: 83ee191f7e372c8745d2b378996eec1aa8d66f20 URL: http://source.winehq.org/git/wine.git/?a=commit;h=83ee191f7e372c8745d2b37899...
Author: Maarten Lankhorst m.b.lankhorst@gmail.com Date: Mon Dec 22 00:07:08 2008 +0100
ntdll: Print the expected and found assembly versions if no compatible version is found.
---
dlls/ntdll/actctx.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/actctx.c b/dlls/ntdll/actctx.c index f1f9ad7..79d475f 100644 --- a/dlls/ntdll/actctx.c +++ b/dlls/ntdll/actctx.c @@ -1398,7 +1398,11 @@ static BOOL parse_assembly_elem(xmlbuf_t* xmlbuf, struct actctx_loader* acl, if (assembly->type == ASSEMBLY_MANIFEST && 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; } else if (assembly->type == ASSEMBLY_SHARED_MANIFEST &&