* collect2.c (scan_libraries): Fix typos.
authorJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>
Sun, 2 Nov 2003 00:12:45 +0000 (00:12 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Sun, 2 Nov 2003 00:12:45 +0000 (00:12 +0000)
From-SVN: r73187

gcc/ChangeLog
gcc/collect2.c

index 6fac24b..6289d82 100644 (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,
index 2d49cce..73ef344 100644 (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)