mirror of https://github.com/mgba-emu/mgba.git
Core: Add missing va_end
This commit is contained in:
parent
622a6e9e2d
commit
e3983d3330
|
@ -88,6 +88,7 @@ void mLogExplicit(struct mLogger* context, int category, enum mLogLevel level, c
|
|||
if (!context->filter || mLogFilterTest(context->filter, category, level)) {
|
||||
context->log(context, category, level, format, args);
|
||||
}
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
void mLogFilterInit(struct mLogFilter* filter) {
|
||||
|
|
Loading…
Reference in New Issue