diff options
Diffstat (limited to 'src/boot_O2')
| -rw-r--r-- | src/boot_O2/gfxprint.c | 2 | ||||
| -rw-r--r-- | src/boot_O2/printutils.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/boot_O2/gfxprint.c b/src/boot_O2/gfxprint.c index f671c6f5c..f65d88200 100644 --- a/src/boot_O2/gfxprint.c +++ b/src/boot_O2/gfxprint.c @@ -180,6 +180,6 @@ void GfxPrint_Printf(GfxPrint* this, const char* fmt, ...) { va_start(args, fmt); GfxPrint_VPrintf(this, fmt, args); - + va_end(args); } diff --git a/src/boot_O2/printutils.c b/src/boot_O2/printutils.c index 4f04fca14..ca62b91b7 100644 --- a/src/boot_O2/printutils.c +++ b/src/boot_O2/printutils.c @@ -9,6 +9,6 @@ void PrintUtils_Printf(PrintCallback* pfn, const char* fmt, ...) { va_start(args, fmt); PrintUtils_VPrintf(pfn, fmt, args); - + va_end(args); } |
