summaryrefslogtreecommitdiffstats
path: root/runtime/modules.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/modules.h')
-rw-r--r--runtime/modules.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/modules.h b/runtime/modules.h
index 7eff8581..4daaf1f9 100644
--- a/runtime/modules.h
+++ b/runtime/modules.h
@@ -77,9 +77,9 @@ typedef enum eModLinkType_ {
/* remember which shared libs we dlopen()-ed */
struct dlhandle_s {
- uchar szName[PATH_MAX];
- void *pModHdlr;
- struct dlhandle_s *next;
+ uchar *pszName;
+ void *pModHdlr;
+ struct dlhandle_s *next;
};
/* should this module be kept linked? */