mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 05:56:31 +00:00
validate-runner: Use correct enum in return value
gst-validate-runner.c:856:7: error: implicit conversion from enumeration type 'GstValidateReportLevel' to different enumeration type 'GstValidateReportingDetails' [-Werror,-Wenum-conversion] GST_VALIDATE_REPORT_LEVEL_UNKNOWN); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This commit is contained in:
parent
2a6c39d725
commit
93fa16f1ba
1 changed files with 1 additions and 1 deletions
|
@ -853,7 +853,7 @@ GstValidateReportingDetails
|
||||||
gst_validate_runner_get_default_reporting_details (GstValidateRunner * runner)
|
gst_validate_runner_get_default_reporting_details (GstValidateRunner * runner)
|
||||||
{
|
{
|
||||||
g_return_val_if_fail (GST_IS_VALIDATE_RUNNER (runner),
|
g_return_val_if_fail (GST_IS_VALIDATE_RUNNER (runner),
|
||||||
GST_VALIDATE_REPORT_LEVEL_UNKNOWN);
|
GST_VALIDATE_SHOW_UNKNOWN);
|
||||||
|
|
||||||
return runner->priv->default_level;
|
return runner->priv->default_level;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue