validate: Fix compiler warning about implicit enum type conversion

gst-validate-reporter.c:119:39: error: implicit conversion from enumeration type
      'GstValidateReportingDetails' to different enumeration type
      'GstValidateInterceptionReturn' [-Werror,-Wenum-conversion]
  GstValidateInterceptionReturn ret = GST_VALIDATE_SHOW_UNKNOWN;
                                ~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~
gst-validate-reporter.c:124:11: error: implicit conversion from enumeration type
      'GstValidateReportingDetails' to different enumeration type
      'GstValidateInterceptionReturn' [-Werror,-Wenum-conversion]
    ret = iface->get_reporting_level (reporter);
        ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gst-validate-reporter.c:127:10: error: implicit conversion from enumeration type
      'GstValidateInterceptionReturn' to different enumeration type
      'GstValidateReportingDetails' [-Werror,-Wenum-conversion]
  return ret;
  ~~~~~~ ^~~
This commit is contained in:
Ramprakash Jelari 2014-10-24 18:41:30 +05:30 committed by Sebastian Dröge
parent 6cf2d92b0f
commit eb47b1021f

View file

@ -116,7 +116,7 @@ gst_validate_reporter_intercept_report (GstValidateReporter * reporter,
GstValidateReportingDetails GstValidateReportingDetails
gst_validate_reporter_get_reporting_level (GstValidateReporter * reporter) gst_validate_reporter_get_reporting_level (GstValidateReporter * reporter)
{ {
GstValidateInterceptionReturn ret = GST_VALIDATE_SHOW_UNKNOWN; GstValidateReportingDetails ret = GST_VALIDATE_SHOW_UNKNOWN;
GstValidateReporterInterface *iface = GstValidateReporterInterface *iface =
GST_VALIDATE_REPORTER_GET_INTERFACE (reporter); GST_VALIDATE_REPORTER_GET_INTERFACE (reporter);
@ -173,8 +173,7 @@ gst_validate_report_valist (GstValidateReporter * reporter,
if (prev_report) { if (prev_report) {
GstValidateReportingDetails reporter_level = GstValidateReportingDetails reporter_level =
gst_validate_reporter_get_reporting_level (reporter); gst_validate_reporter_get_reporting_level (reporter);
GstValidateReportingDetails runner_level = GstValidateReportingDetails runner_level = GST_VALIDATE_SHOW_UNKNOWN;
GST_VALIDATE_SHOW_UNKNOWN;
if (priv->runner) if (priv->runner)
runner_level = runner_level =