From 4d48fc7ae5e28a3d4cd7851aec31649c782f0bbe Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 16 Jul 2008 03:37:37 +0000 Subject: [PATCH] Fixed double-period showing on native failures. --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%402421 --- core/systems/PluginSys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/systems/PluginSys.cpp b/core/systems/PluginSys.cpp index c9196d68..64377f99 100644 --- a/core/systems/PluginSys.cpp +++ b/core/systems/PluginSys.cpp @@ -1374,7 +1374,7 @@ bool CPluginManager::RunSecondPass(CPlugin *pPlugin, char *error, size_t maxleng { if (error) { - snprintf(error, maxlength, "Native \"%s\" was not found.", native->name); + snprintf(error, maxlength, "Native \"%s\" was not found", native->name); } return false; }