Merge pull request #923 from turol/va_end

setup: Fix missing va_end
This commit is contained in:
Mike Swanson 2017-07-22 14:26:33 -07:00 committed by GitHub
commit 03eb29f215

View file

@ -137,6 +137,8 @@ void AddCmdLineParameter(execute_context_t *context, char *s, ...)
vfprintf(context->stream, s, args);
fprintf(context->stream, "\n");
va_end(args);
}
#if defined(_WIN32)