Skip to content
Snippets Groups Projects
Commit de4ae580 authored by Julian Oes's avatar Julian Oes Committed by Lorenz Meier
Browse files

px4_log: get the printf of fmt/args right

parent c916ee73
No related branches found
No related tags found
No related merge requests found
......@@ -123,6 +123,8 @@ static inline void do_nothing(int level, ...)
#include <stdint.h>
#include <sys/cdefs.h>
#include <stdio.h>
#include <stdarg.h>
#include <px4_defines.h>
__BEGIN_DECLS
......@@ -235,7 +237,10 @@ static inline void __px4_log_modulename(int level, const char *fmt, ...)
if (level <= __px4_log_level_current) {
printf(__px4__log_level_fmt __px4__log_level_arg(level));
printf(__px4__log_modulename_fmt __px4__log_modulename_arg);
printf(fmt);
va_list argptr;
va_start(argptr, fmt);
vprintf(fmt, argptr);
va_end(argptr);
printf("\n");
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment