small change in format label

This commit is contained in:
fduncanh
2022-05-04 15:19:58 -04:00
parent 7eb4aaf1e7
commit e5c2a0ca6b

View File

@@ -105,7 +105,7 @@ void audio_renderer_init(logger_t *render_logger, const char* audiosink) {
g_string_append (launch, " sync=false");
renderer_type[i]->pipeline = gst_parse_launch(launch->str, &error);
if (error) {
g_error ("get_parse_launch error (audio %d):\n %s\n", i, error->message);
g_error ("get_parse_launch error (audio %d):\n %s\n", i+1, error->message);
g_clear_error (&error);
}
g_assert (renderer_type[i]->pipeline);