mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-14 14:20:34 +08:00
Fix va_arg calls (always call va_end)
From the manpage: "Each invocation of va_start() must be matched by a corresponding invocation of va_end() in the same function."
This commit is contained in:
committed by
Lorenz Meier
parent
b845edba64
commit
453937a89a
@@ -64,6 +64,7 @@ ekf_debug(const char *fmt, ...)
|
||||
|
||||
va_start(args, fmt);
|
||||
ekf_debug_print(fmt, args);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user