mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
validate: fix build with newer gcc
In file included from ../../../../dist/linux_x86_64/include/gstreamer-1.0/gst/gst.h:55, from ../validate/gst/validate/gst-validate-scenario.c:45: ../validate/gst/validate/gst-validate-scenario.c: In function ‘gst_validate_scenario_load’: ../../../../dist/linux_x86_64/include/gstreamer-1.0/gst/gstinfo.h:645:5: error: ‘%s’ directive argument is null [-Werror=format-overflow=] 645 | gst_debug_log ((cat), (level), __FILE__, GST_FUNCTION, __LINE__, \ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 646 | (GObject *) (object), __VA_ARGS__); \ | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../../../../dist/linux_x86_64/include/gstreamer-1.0/gst/gstinfo.h:1067:26: note: in expansion of macro ‘GST_CAT_LEVEL_LOG’ 1067 | #define GST_ERROR(...) GST_CAT_LEVEL_LOG (GST_CAT_DEFAULT, GST_LEVEL_ERROR, NULL, __VA_ARGS__) | ^~~~~~~~~~~~~~~~~ ../validate/gst/validate/gst-validate-scenario.c:3615:5: note: in expansion of macro ‘GST_ERROR’ 3615 | GST_ERROR ("Invalid name for scenario '%s'", scenario_name); | ^~~~~~~~~ ../validate/gst/validate/gst-validate-scenario.c:3615:44: note: format string is defined here 3615 | GST_ERROR ("Invalid name for scenario '%s'", scenario_name); | ^~
This commit is contained in:
parent
461e479802
commit
e3f4d51771
1 changed files with 1 additions and 1 deletions
|
@ -3612,7 +3612,7 @@ done:
|
|||
|
||||
invalid_name:
|
||||
{
|
||||
GST_ERROR ("Invalid name for scenario '%s'", scenario_name);
|
||||
GST_ERROR ("Invalid name for scenario '%s'", GST_STR_NULL (scenario_name));
|
||||
error:
|
||||
ret = FALSE;
|
||||
goto done;
|
||||
|
|
Loading…
Reference in a new issue