aboutsummaryrefslogtreecommitdiff
path: root/gcc/collect2.c
diff options
context:
space:
mode:
authorJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>2003-11-02 00:12:45 +0000
committerJohn David Anglin <danglin@gcc.gnu.org>2003-11-02 00:12:45 +0000
commit94d5427624ceb8a3d4a7088db68f2724dcf9c4ce (patch)
tree5f7d17d4bcf36c6d2c2a96a8fc4be639e328dfcb /gcc/collect2.c
parentd6665c333229ffb6f47645862aa61ec1ddacaa97 (diff)
downloadgcc-94d5427624ceb8a3d4a7088db68f2724dcf9c4ce.zip
gcc-94d5427624ceb8a3d4a7088db68f2724dcf9c4ce.tar.gz
gcc-94d5427624ceb8a3d4a7088db68f2724dcf9c4ce.tar.bz2
* collect2.c (scan_libraries): Fix typos.
From-SVN: r73187
Diffstat (limited to 'gcc/collect2.c')
-rw-r--r--gcc/collect2.c4
1 files changed, 2 insertions, 2 deletions
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)