Minor changes in modules and host plugin.

This commit is contained in:
Sandu Liviu Catalin
2016-04-02 13:13:32 +03:00
parent 04c14f2c6a
commit 484b6978fb
4 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ CSStr FmtStr(CSStr str, ...)
// Write the requested contents
if (std::vsnprintf(g_Buffer, sizeof(g_Buffer), str, args) < 0)
{
g_Buffer[0] = 0; // make sure the string is terminated
g_Buffer[0] = 0; // Make sure the string is terminated
}
// Release the argument list
va_end(args);