🐛 Fix missing va_end in UnwPrintf (#25027)

This commit is contained in:
Trivalik 2022-11-28 02:06:44 +01:00 committed by Scott Lahteine
parent 12017887f4
commit d2ece1e713
1 changed files with 3 additions and 2 deletions

View File

@ -33,8 +33,9 @@
void UnwPrintf(const char *format, ...) {
va_list args;
va_start( args, format );
vprintf(format, args );
va_start(args, format);
vprintf(format, args);
va_end(args);
}
#endif