vlc | branch: master | Sebastian Ramacher <[email protected]> | Sat Jan 30 11:54:29 2016 +0100| [68b8e9896a5f04593346b826c3dfc73535702d90] | committer: Jean-Baptiste Kempf
Fix spelling of "already" Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=68b8e9896a5f04593346b826c3dfc73535702d90 --- modules/access/avio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/access/avio.c b/modules/access/avio.c index 081bae7..b865185 100644 --- a/modules/access/avio.c +++ b/modules/access/avio.c @@ -179,7 +179,7 @@ int OpenAvio(vlc_object_t *object) #if LIBAVFORMAT_VERSION_MAJOR < 54 /* We can accept only one active user at any time */ if (SetupAvioCb(VLC_OBJECT(access))) { - msg_Err(access, "Module aready in use"); + msg_Err(access, "Module already in use"); avio_close(sys->context); goto error; } @@ -260,7 +260,7 @@ int OutOpenAvio(vlc_object_t *object) #if LIBAVFORMAT_VERSION_MAJOR < 54 /* We can accept only one active user at any time */ if (SetupAvioCb(VLC_OBJECT(access))) { - msg_Err(access, "Module aready in use"); + msg_Err(access, "Module already in use"); goto error; } #endif _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
