]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/loader-shl_load.c: Fix typos during reorg.
authorAlbert Chin-A-Young <china@thewrittenword.com>
Mon, 19 Apr 2004 13:05:24 +0000 (13:05 +0000)
committerGary V. Vaughan <gary@gnu.org>
Mon, 19 Apr 2004 13:05:24 +0000 (13:05 +0000)
ChangeLog
libltdl/loader-shl_load.c

index 47b56322d0870c0fbb875c9bb70360e1396afeec..a9056a2762ef42031785f1db453c40a6b7c389d4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-04-19  Albert Chin-A-Young  <china@thewrittenword.com>
+
+       * libltdl/loader-shl_load.c: Fix typos during reorg.
+
 2004-04-19  Alexandre Duret-Lutz  <adl@gnu.org>
 
        * doc/libtool.texi (LT_INIT): Properly display options in a table.
index 49d9283df9785cae536d6ccbede27faf3753eff4..1dae52996ab73ff4049fdb92ed832678957811a6 100644 (file)
@@ -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;