diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-06-20 13:28:08 +0200 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-06-20 13:28:08 +0200 |
commit | 7da1d23a9b25213e70cc28ea080e8cce16f9ede8 (patch) | |
tree | 4fd9e3b8f26f4250e45202402850228fad776f61 /tests | |
parent | d2c632fcdaf41b71cf984ea98db67848f00aa64d (diff) |
info: add destroy notify to gst_debug_add_log_function()
Diffstat (limited to 'tests')
-rw-r--r-- | tests/check/gst/gstinfo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/check/gst/gstinfo.c b/tests/check/gst/gstinfo.c index e7757d839..bc786eea5 100644 --- a/tests/check/gst/gstinfo.c +++ b/tests/check/gst/gstinfo.c @@ -49,7 +49,7 @@ GST_START_TEST (info_ptr_format_printf_extension) /* set up our own log function to make sure the code in gstinfo is actually * executed without GST_DEBUG being set or it being output to stdout */ gst_debug_remove_log_function (gst_debug_log_default); - gst_debug_add_log_function (printf_extension_log_func, NULL); + gst_debug_add_log_function (printf_extension_log_func, NULL, NULL); gst_debug_set_default_threshold (GST_LEVEL_LOG); @@ -105,7 +105,7 @@ GST_START_TEST (info_ptr_format_printf_extension) /* clean up */ gst_debug_set_default_threshold (GST_LEVEL_NONE); - gst_debug_add_log_function (gst_debug_log_default, NULL); + gst_debug_add_log_function (gst_debug_log_default, NULL, NULL); gst_debug_remove_log_function (printf_extension_log_func); } @@ -117,7 +117,7 @@ GST_START_TEST (info_segment_format_printf_extension) /* set up our own log function to make sure the code in gstinfo is actually * executed without GST_DEBUG being set or it being output to stdout */ gst_debug_remove_log_function (gst_debug_log_default); - gst_debug_add_log_function (printf_extension_log_func, NULL); + gst_debug_add_log_function (printf_extension_log_func, NULL, NULL); gst_debug_set_default_threshold (GST_LEVEL_LOG); @@ -183,7 +183,7 @@ GST_START_TEST (info_segment_format_printf_extension) /* clean up */ gst_debug_set_default_threshold (GST_LEVEL_NONE); - gst_debug_add_log_function (gst_debug_log_default, NULL); + gst_debug_add_log_function (gst_debug_log_default, NULL, NULL); gst_debug_remove_log_function (printf_extension_log_func); } |