Skip to content

Commit

Permalink
[Project64] Fix recompiler log output
Browse files Browse the repository at this point in the history
  • Loading branch information
project64 committed Feb 13, 2018
1 parent f28823e commit 22ea567
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -23,7 +23,7 @@ void Recompiler_Log_Message(const char * strFormat, ...)
{
va_list args;
va_start(args, strFormat);
size_t nlen = _vscprintf(strFormat, args);
size_t nlen = _vscprintf(strFormat, args) + 1;
char * buffer = (char *)alloca((nlen + 3) * sizeof(char));
if (buffer != NULL)
{
Expand Down

0 comments on commit 22ea567

Please sign in to comment.