libtool-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Libtool branch, master, updated. v2.2.6-165-g2c9c38d


From: Peter Rosin
Subject: [SCM] GNU Libtool branch, master, updated. v2.2.6-165-g2c9c38d
Date: Mon, 30 Nov 2009 19:21:27 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Libtool".

The branch, master has been updated
       via  2c9c38d8a12eb0a2ce7fe9c3862523026c3d5622 (commit)
      from  b15f6f9ded3e9e1edb7b74e5bd823cd511673e48 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 2c9c38d8a12eb0a2ce7fe9c3862523026c3d5622
Author: Peter Rosin <address@hidden>
Date:   Mon Nov 30 14:20:36 2009 -0500

    Please C++ compilers when calling strrchr.
    
    * libltdl/ltdl.c (has_library_ext): Match the return type of
    strrchr with the first argument to please C++ compilers.
    Report by Peter O'Gorman.
    
    Signed-off-by: Peter Rosin <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog      |    7 +++++++
 libltdl/ltdl.c |    2 +-
 2 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 3ba536c..7961cac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-11-30  Peter Rosin  <address@hidden>
+
+       Please C++ compilers when calling strrchr.
+       * libltdl/ltdl.c (has_library_ext): Match the return type of
+       strrchr with the first argument to please C++ compilers.
+       Report by Peter O'Gorman.
+
 2009-11-29  Ralf Wildenhues  <address@hidden>
 
        Fix bindir and dlopen tests for C++ compilers (CC=g++).
diff --git a/libltdl/ltdl.c b/libltdl/ltdl.c
index 24ee13f..e2accff 100644
--- a/libltdl/ltdl.c
+++ b/libltdl/ltdl.c
@@ -1507,7 +1507,7 @@ file_not_found (void)
 static int
 has_library_ext (const char *filename)
 {
-  char *       ext     = 0;
+  const char * ext     = 0;
 
   assert (filename);
 


hooks/post-receive
-- 
GNU Libtool




reply via email to

[Prev in Thread] Current Thread [Next in Thread]