From c5648f2be3524d355b611c8dbc1590764267ee3c Mon Sep 17 00:00:00 2001 From: Andreas Mohr Date: Mon, 12 Jun 2000 01:18:11 +0000 Subject: [PATCH] Made the DLL version clash error message more verbose. --- misc/version.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/misc/version.c b/misc/version.c index 05cc1c8843..30a6b7dcd5 100644 --- a/misc/version.c +++ b/misc/version.c @@ -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 */ } }