From 332a51d1f05d91b1916c1a715185532069246eb8 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Thu, 11 Sep 2014 09:42:02 +0200 Subject: [PATCH] validate: Get the Runner reports in order of arrival Making sure they are printed in the right order --- validate/gst/validate/gst-validate-runner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate/gst/validate/gst-validate-runner.c b/validate/gst/validate/gst-validate-runner.c index 93cf852995..88bda2b22f 100644 --- a/validate/gst/validate/gst-validate-runner.c +++ b/validate/gst/validate/gst-validate-runner.c @@ -144,7 +144,7 @@ gst_validate_runner_get_reports (GstValidateRunner * runner) { /* TODO should we need locking or put in the docs to always call this * after pipeline ends? */ - return runner->reports; + return g_slist_reverse (runner->reports); } /**