[vlc-devel] [PATCH 1/3] aout: fix error log message
Thomas Guillem
thomas at gllm.fr
Tue Sep 15 16:36:18 CEST 2020
---
src/audio_output/output.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/audio_output/output.c b/src/audio_output/output.c
index 7c8ed030b01..e144159e05a 100644
--- a/src/audio_output/output.c
+++ b/src/audio_output/output.c
@@ -605,7 +605,7 @@ int aout_OutputNew (audio_output_t *aout)
vlc_mutex_unlock(&owner->lock);
if (ret)
{
- msg_Err (aout, "module not functional");
+ msg_Err (aout, "failed to start audio output");
return -1;
}
assert(aout->flush && aout->play && aout->time_get && aout->pause);
--
2.28.0
More information about the vlc-devel
mailing list