[vlc-commits] modules: Fix static builds

Hugo Beauzée-Luyssen git at videolan.org
Tue Mar 5 16:43:53 CET 2019


vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Tue Mar  5 16:43:24 2019 +0100| [28911ccec06181b5e1af83c2e8b1c4d8c01709b7] | committer: Hugo Beauzée-Luyssen

modules: Fix static builds

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

 src/modules/bank.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/bank.c b/src/modules/bank.c
index a63221318b..0b551a91bc 100644
--- a/src/modules/bank.c
+++ b/src/modules/bank.c
@@ -564,9 +564,9 @@ static void module_Unmap(vlc_plugin_t *plugin)
         vlc_dlclose(handle);
 }
 #else
-int module_Map(vlc_object_t *obj, vlc_plugin_t *plugin)
+int module_Map(struct vlc_logger *log, vlc_plugin_t *plugin)
 {
-    (void) obj; (void) plugin;
+    (void) log; (void) plugin;
     return 0;
 }
 



More information about the vlc-commits mailing list