diff options
Diffstat (limited to 'lib/System')
-rw-r--r-- | lib/System/ltdl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/System/ltdl.c b/lib/System/ltdl.c index 67631be..23db62f 100644 --- a/lib/System/ltdl.c +++ b/lib/System/ltdl.c @@ -865,13 +865,13 @@ struct lt_dlhandle_struct { #define LT_DLSTRERROR(name) lt_dlerror_strings[LT_CONC(LT_ERROR_,name)] -static const char objdir[] = LTDL_OBJDIR; -static const char archive_ext[] = LTDL_ARCHIVE_EXT; +static const char *objdir = LTDL_OBJDIR; +static const char *archive_ext = LTDL_ARCHIVE_EXT; #ifdef LTDL_SHLIB_EXT -static const char shlib_ext[] = LTDL_SHLIB_EXT; +static const char *shlib_ext = LTDL_SHLIB_EXT; #endif #ifdef LTDL_SYSSEARCHPATH -static const char sys_search_path[] = LTDL_SYSSEARCHPATH; +static const char *sys_search_path = LTDL_SYSSEARCHPATH; #endif |