* collect2.c (scan_libraries): Fix typos.

From-SVN: r73187
This commit is contained in:
John David Anglin 2003-11-02 00:12:45 +00:00 committed by John David Anglin
parent d6665c3332
commit 94d5427624
2 changed files with 4 additions and 2 deletions

View File

@ -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,

View File

@ -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)