From: RĂ©mi Duraffort Date: Fri, 5 Mar 2010 17:33:57 +0000 (+0100) Subject: Lower the size of the module_t structure because not any module as more than 15 short... X-Git-Tag: 1.1.0-pre1~501 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=0d82e89f5743449417902f5c8e7055aa6c8c1e21;p=vlc 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. --- diff --git a/src/modules/modules.h b/src/modules/modules.h index 2973c43aa4..50add49bc5 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__)