[vlc-commits] lua: fix typo
Thomas Guillem
git at videolan.org
Thu Apr 11 10:22:26 CEST 2019
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Thu Apr 11 10:20:39 2019 +0200| [30fcfbae4ff07cb97c8481b91be110ff9bf6f370] | committer: Thomas Guillem
lua: fix typo
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=30fcfbae4ff07cb97c8481b91be110ff9bf6f370
---
modules/lua/libs/objects.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/lua/libs/objects.c b/modules/lua/libs/objects.c
index 4d1d8665c3..377ac94db3 100644
--- a/modules/lua/libs/objects.c
+++ b/modules/lua/libs/objects.c
@@ -127,7 +127,7 @@ static int vlclua_aout_release(lua_State *L)
vlc_object_t **pp = luaL_checkudata(L, 1, "vlc_object");
lua_pop(L, 1);
- aout_Release((vout_thread_t *)*pp);
+ aout_Release((audio_output_t *)*pp);
return 0;
}
More information about the vlc-commits
mailing list