From 4b8ffbc52afd8f7c32f0b32528819166147a9d14 Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Mon, 6 Nov 2017 16:52:14 +1100 Subject: [PATCH] Improve error message on module version mismatch --- source/modules.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/modules.c b/source/modules.c index 281840b..6ccfe00 100644 --- a/source/modules.c +++ b/source/modules.c @@ -953,7 +953,7 @@ BUILT_IN_COMMAND(dll_load) else { if (code == INVALID_MODVERSION) - bitchsay("Error module version is wrong for [%s]", procname); + bitchsay("Module ABI version is wrong for [%s]. This likely means that the module needs to be recompiled.", procname); else bitchsay("Error initializing module [%s:%d]", procname, code); if (handle)