From 94d5427624ceb8a3d4a7088db68f2724dcf9c4ce Mon Sep 17 00:00:00 2001 From: John David Anglin Date: Sun, 2 Nov 2003 00:12:45 +0000 Subject: [PATCH] * collect2.c (scan_libraries): Fix typos. From-SVN: r73187 --- gcc/ChangeLog | 2 ++ 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 + * 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) -- 2.7.4