diff options
author | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-02 00:12:45 +0000 |
---|---|---|
committer | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-02 00:12:45 +0000 |
commit | 5b6b3be85bb6a0c1ed60f735d16c1e03ce4f0ca4 (patch) | |
tree | 5f7d17d4bcf36c6d2c2a96a8fc4be639e328dfcb /gcc/collect2.c | |
parent | 2aef754759ac63ebeaa93005389d0562637018cf (diff) | |
download | gcc-5b6b3be85bb6a0c1ed60f735d16c1e03ce4f0ca4.tar.gz |
* collect2.c (scan_libraries): Fix typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73187 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/collect2.c')
-rw-r--r-- | gcc/collect2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/collect2.c b/gcc/collect2.c index 2d49cce3ffe..73ef3440560 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) |