From 75e1f5040a2fdd744710023bf0b7a7f4d2c65a27 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Olivier=20Cr=C3=AAte?= Date: Thu, 3 Oct 2013 18:14:18 -0400 Subject: [PATCH] gst-validate-scenario: Only typedef the struct once Some gcc versions don't like the typedef being done twice --- validate/gst/validate/gst-validate-scenario.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/validate/gst/validate/gst-validate-scenario.h b/validate/gst/validate/gst-validate-scenario.h index 5070d2c..6e6407b 100644 --- a/validate/gst/validate/gst-validate-scenario.h +++ b/validate/gst/validate/gst-validate-scenario.h @@ -43,14 +43,14 @@ typedef struct _GstValidateAction GstValidateAction; typedef gboolean (*GstValidateExecuteAction) (GstValidateScenario * scenario, GstValidateAction * action); -typedef struct _GstValidateAction +struct _GstValidateAction { const gchar *type; const gchar *name; guint action_number; GstClockTime playback_time; GstStructure *structure; -} GstValidateAction; +}; struct _GstValidateScenarioClass { -- 2.7.4