]> git.sesse.net Git - vlc/blobdiff - modules/control/hotkeys.c
inhibit: fix another instance of the killed-before-wait race
[vlc] / modules / control / hotkeys.c
index 1bf3f1980bc36f24afe1de61c0e3e1c5ab7710e5..27993b1b5366aaaa8d480228703ef61e559b1ecb 100644 (file)
@@ -31,6 +31,7 @@
 #endif
 
 #include <vlc/vlc.h>
+#include <vlc_plugin.h>
 #include <vlc_interface.h>
 #include <vlc_input.h>
 #include <vlc_vout.h>
@@ -93,8 +94,8 @@ static void ClearChannels  ( intf_thread_t *, vout_thread_t * );
 #define BOOKMARK_LONGTEXT N_("Define playlist bookmarks.")
 
 vlc_module_begin();
-    set_shortname( _("Hotkeys") );
-    set_description( _("Hotkeys management interface") );
+    set_shortname( N_("Hotkeys") );
+    set_description( N_("Hotkeys management interface") );
     set_capability( "interface", 0 );
     set_callbacks( Open, Close );
 vlc_module_end();