mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-07 08:39:54 +00:00
pad-monitor: fix NULL format string
An empty message should be an empty string.
This commit is contained in:
parent
2eba57d387
commit
4456e24cdf
1 changed files with 1 additions and 1 deletions
|
@ -1041,7 +1041,7 @@ gst_qa_pad_monitor_add_expected_newsegment (GstQaPadMonitor * monitor,
|
|||
GST_QA_MONITOR_LOCK (othermonitor);
|
||||
if (othermonitor->expected_segment) {
|
||||
GST_QA_REPORT (othermonitor,
|
||||
GST_QA_ISSUE_ID_EVENT_NEWSEGMENT_NOT_PUSHED, NULL);
|
||||
GST_QA_ISSUE_ID_EVENT_NEWSEGMENT_NOT_PUSHED, "");
|
||||
gst_event_unref (othermonitor->expected_segment);
|
||||
}
|
||||
othermonitor->expected_segment = gst_event_ref (event);
|
||||
|
|
Loading…
Reference in a new issue