[vlc-commits] commit: Lower the size of the module_t structure because not any module as more than 15 shortcut (I choose 20 to be safe) ( Rémi Duraffort )
git version control
git at videolan.org
Fri Mar 5 18:35:33 CET 2010
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Fri Mar 5 18:33:57 2010 +0100| [0d82e89f5743449417902f5c8e7055aa6c8c1e21] | committer: Rémi Duraffort
Lower the size of the module_t structure because not any module as more than 15 shortcut (I choose 20 to be safe)
Thanks to Pierre d'Herbemont who pointed this out.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0d82e89f5743449417902f5c8e7055aa6c8c1e21
---
src/modules/modules.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/modules/modules.h b/src/modules/modules.h
index 2973c43..50add49 100644
--- a/src/modules/modules.h
+++ b/src/modules/modules.h
@@ -69,7 +69,7 @@ struct module_cache_t
};
-#define MODULE_SHORTCUT_MAX 50
+#define MODULE_SHORTCUT_MAX 20
/* The module handle type. */
#if defined(HAVE_DL_DYLD) && !defined(__x86_64__)
More information about the vlc-commits
mailing list