1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-12 10:54:44 +00:00

Add va_end and returns to variadic functions (#950)

This commit is contained in:
EllipticEllipsis 2021-09-07 17:17:19 +01:00 committed by GitHub
parent c577ed1e84
commit b1cd46c37c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 25 additions and 2 deletions

View file

@ -357,8 +357,13 @@ s32 GfxPrint_VPrintf(GfxPrint* this, const char* fmt, va_list args) {
}
s32 GfxPrint_Printf(GfxPrint* this, const char* fmt, ...) {
s32 ret;
va_list args;
va_start(args, fmt);
return GfxPrint_VPrintf(this, fmt, args);
ret = GfxPrint_VPrintf(this, fmt, args);
va_end(args);
return ret;
}