From 02ed99c47bc885f26ac3afdd3a40119c780d4e0b Mon Sep 17 00:00:00 2001 From: Albert Chin-A-Young Date: Mon, 19 Apr 2004 13:05:24 +0000 Subject: [PATCH] * libltdl/loader-shl_load.c: Fix typos during reorg. --- ChangeLog | 4 ++++ libltdl/loader-shl_load.c | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 47b56322d..a9056a276 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-04-19 Albert Chin-A-Young + + * libltdl/loader-shl_load.c: Fix typos during reorg. + 2004-04-19 Alexandre Duret-Lutz * doc/libtool.texi (LT_INIT): Properly display options in a table. diff --git a/libltdl/loader-shl_load.c b/libltdl/loader-shl_load.c index 49d9283df..1dae52996 100644 --- a/libltdl/loader-shl_load.c +++ b/libltdl/loader-shl_load.c @@ -74,8 +74,8 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA #define LT_BIND_FLAGS (BIND_IMMEDIATE | BIND_NONFATAL | DYNAMIC_PATH) -lt_module -lt__sys_shl_open (lt_user_data loader_data, const char *filenam) +static lt_module +sys_shl_open (lt_user_data loader_data, const char *filenam) { static shl_t self = (shl_t) 0; lt_module module = shl_load (filename, LT_BIND_FLAGS, 0L); @@ -107,8 +107,8 @@ lt__sys_shl_open (lt_user_data loader_data, const char *filenam) return module; } -int -lt__sys_shl_close (lt_user_data loader_data, lt_module module) +static int +sys_shl_close (lt_user_data loader_data, lt_module module) { int errors = 0; -- 2.47.2