Commit c5648f2b authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Made the DLL version clash error message more verbose.

parent 261abcd5
......@@ -249,7 +249,10 @@ DWORD VERSION_GetLinkedDllVersion(PDB *pdb)
WinVersion = DllVersion;
else {
if (WinVersion != DllVersion) {
ERR("You mixed system dlls from different windows versions! Expect a crash!\n");
ERR("You mixed system dlls from different windows versions! Expect a crash! (%s: expected version '%s', but is '%s')\n",
wm->modname,
VersionData[WinVersion].getVersionEx.szCSDVersion,
VersionData[DllVersion].getVersionEx.szCSDVersion);
return WIN31; /* this may let the exe exiting */
}
}
......
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