diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2003-11-02 00:12:45 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2003-11-02 00:12:45 +0000 |
commit | 94d5427624ceb8a3d4a7088db68f2724dcf9c4ce (patch) | |
tree | 5f7d17d4bcf36c6d2c2a96a8fc4be639e328dfcb | |
parent | d6665c333229ffb6f47645862aa61ec1ddacaa97 (diff) | |
download | gcc-94d5427624ceb8a3d4a7088db68f2724dcf9c4ce.zip gcc-94d5427624ceb8a3d4a7088db68f2724dcf9c4ce.tar.gz gcc-94d5427624ceb8a3d4a7088db68f2724dcf9c4ce.tar.bz2 |
* collect2.c (scan_libraries): Fix typos.
From-SVN: r73187
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/collect2.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6fac24b..6289d82 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -10,6 +10,8 @@ 2003-11-01 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + * collect2.c (scan_libraries): Fix typos. + PR preprocessor/12847 * cppfiles.c, cppexp.c, cpperror.c, cpplib.h, cpplib.c, cpplex.c, cppinit.c, cpptrad.c, cppmacro.c, fix-header.c, cpppch.c, c-pch.c, diff --git a/gcc/collect2.c b/gcc/collect2.c index 2d49cce..73ef344 100644 --- a/gcc/collect2.c +++ b/gcc/collect2.c @@ -2480,9 +2480,9 @@ scan_libraries (const char *prog_name) } /* Parent context from here on. */ - int_handler = (void (*) (int))) signal (SIGINT, SIG_IGN; + int_handler = (void (*) (int)) signal (SIGINT, SIG_IGN); #ifdef SIGQUIT - quit_handler = (void (*) (int))) signal (SIGQUIT, SIG_IGN; + quit_handler = (void (*) (int)) signal (SIGQUIT, SIG_IGN); #endif if (close (pipe_fd[1]) < 0) |