mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-05 07:52:42 +00:00
Fix additional missing va_end() in the HID bootloader CLI utility.
This commit is contained in:
parent
593dd3dd55
commit
dd09a833d9
@ -921,17 +921,16 @@ void ihex_get_data(int addr, int len, unsigned char *bytes)
|
||||
int printf_verbose(const char *format, ...)
|
||||
{
|
||||
va_list ap;
|
||||
int r;
|
||||
int r = 0;
|
||||
|
||||
va_start(ap, format);
|
||||
if (verbose) {
|
||||
r = vprintf(format, ap);
|
||||
fflush(stdout);
|
||||
return r;
|
||||
}
|
||||
va_end(ap);
|
||||
|
||||
return 0;
|
||||
return r;
|
||||
}
|
||||
|
||||
void delay(double seconds)
|
||||
|
Loading…
Reference in New Issue
Block a user