From 0d82e89f5743449417902f5c8e7055aa6c8c1e21 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Fri, 5 Mar 2010 18:33:57 +0100 Subject: [PATCH] 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. --- src/modules/modules.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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__) -- 2.39.5