[vlc-commits] aout: fix error log message

Thomas Guillem git at videolan.org
Thu Sep 17 11:15:49 CEST 2020


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Tue Sep 15 16:25:46 2020 +0200| [6ad5ef2355fc28be145e78f283058772e49b0def] | committer: Thomas Guillem

aout: fix error log message

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6ad5ef2355fc28be145e78f283058772e49b0def
---

 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 7c8ed030b0..e144159e05 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);



More information about the vlc-commits mailing list