Commit 68b8e989 authored by Sebastian Ramacher's avatar Sebastian Ramacher Committed by Jean-Baptiste Kempf

Fix spelling of "already"

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 1aa21806
...@@ -179,7 +179,7 @@ int OpenAvio(vlc_object_t *object) ...@@ -179,7 +179,7 @@ int OpenAvio(vlc_object_t *object)
#if LIBAVFORMAT_VERSION_MAJOR < 54 #if LIBAVFORMAT_VERSION_MAJOR < 54
/* We can accept only one active user at any time */ /* We can accept only one active user at any time */
if (SetupAvioCb(VLC_OBJECT(access))) { if (SetupAvioCb(VLC_OBJECT(access))) {
msg_Err(access, "Module aready in use"); msg_Err(access, "Module already in use");
avio_close(sys->context); avio_close(sys->context);
goto error; goto error;
} }
...@@ -260,7 +260,7 @@ int OutOpenAvio(vlc_object_t *object) ...@@ -260,7 +260,7 @@ int OutOpenAvio(vlc_object_t *object)
#if LIBAVFORMAT_VERSION_MAJOR < 54 #if LIBAVFORMAT_VERSION_MAJOR < 54
/* We can accept only one active user at any time */ /* We can accept only one active user at any time */
if (SetupAvioCb(VLC_OBJECT(access))) { if (SetupAvioCb(VLC_OBJECT(access))) {
msg_Err(access, "Module aready in use"); msg_Err(access, "Module already in use");
goto error; goto error;
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment