mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
qa-monitor: Fix typo in printf format for report debug messages
Stringify the arguments correctly for printing
This commit is contained in:
parent
6677b5a574
commit
fbd6aa1359
1 changed files with 3 additions and 3 deletions
|
@ -54,21 +54,21 @@ G_STMT_START { \
|
|||
#define GST_QA_MONITOR_REPORT_CRITICAL(m, area, subarea, detail) \
|
||||
G_STMT_START { \
|
||||
GST_ERROR_OBJECT (m, "Critical report: %s: %s: %s", \
|
||||
"## area", "subarea ##", detail); \
|
||||
#area, #subarea, detail); \
|
||||
GST_QA_MONITOR_REPORT(m, CRITICAL, area, subarea, detail); \
|
||||
} G_STMT_END
|
||||
|
||||
#define GST_QA_MONITOR_REPORT_WARNING(m, area, subarea, detail) \
|
||||
G_STMT_START { \
|
||||
GST_WARNING_OBJECT (m, "Warning report: %s: %s: %s", \
|
||||
"## area ##", "## subarea ##", detail); \
|
||||
#area, #subarea, detail); \
|
||||
GST_QA_MONITOR_REPORT(m, WARNING, area, subarea, detail); \
|
||||
} G_STMT_END
|
||||
|
||||
#define GST_QA_MONITOR_REPORT_ISSUE(m, area, subarea, detail) \
|
||||
G_STMT_START { \
|
||||
GST_WARNING_OBJECT (m, "Issue report: %s: %s: %s", \
|
||||
"## area ##", "## subarea ##", detail); \
|
||||
#area, #subarea, detail); \
|
||||
GST_QA_MONITOR_REPORT(m, ISSUE, area, subarea, detail); \
|
||||
} G_STMT_END
|
||||
|
||||
|
|
Loading…
Reference in a new issue