From e679d8531e77ecb291c2b7d4a75ceb18d82c2e51 Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Fri, 9 Aug 2013 12:33:27 -0300 Subject: [PATCH] reporter: fix printf format type --- validate/gst/qa/gst-qa-reporter.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/validate/gst/qa/gst-qa-reporter.c b/validate/gst/qa/gst-qa-reporter.c index 9f810935d9..bf347deae5 100644 --- a/validate/gst/qa/gst-qa-reporter.c +++ b/validate/gst/qa/gst-qa-reporter.c @@ -104,7 +104,8 @@ gst_qa_report_valist (GstQaReporter * reporter, GstQaIssueId issue_id = gst_qa_issue_get_id (issue); if (g_hash_table_lookup (priv->reports, (gconstpointer) issue_id)) { - GST_DEBUG ("Report %d:%s already present", issue_id, issue->summary); + GST_DEBUG ("Report %" G_GUINTPTR_FORMAT ":%s already present", + issue_id, issue->summary); gst_qa_report_unref (report); return; }