Commit 94d54276 by John David Anglin Committed by John David Anglin

* collect2.c (scan_libraries): Fix typos.

From-SVN: r73187
parent d6665c33
......@@ -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,
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment