From e22243b2d01b533053fb88704e4f26b8fb543df7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 8 Feb 2014 17:11:54 +0100 Subject: [PATCH] videoscale: Fix compiler warning in unit test error: implicit conversion from enumeration type 'GstFormat' to different enumeration type 'GstVideoFormat' --- tests/check/elements/videoscale.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check/elements/videoscale.c b/tests/check/elements/videoscale.c index 1fd48248de..369df32395 100644 --- a/tests/check/elements/videoscale.c +++ b/tests/check/elements/videoscale.c @@ -34,7 +34,7 @@ get_num_formats (void) { guint i = 2; - while (gst_video_format_to_string ((GstFormat) i) != NULL) + while (gst_video_format_to_string ((GstVideoFormat) i) != NULL) ++i; return i;