This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: fix build breakage in pexecute.c


I've just committed this fix as obvious.

Cheers, Ben

2006-02-21  Ben Elliston  <bje@au.ibm.com>

        * pexecute.c (pwait): Syntax fix for previous change.

Index: pexecute.c
===================================================================
--- pexecute.c  (revision 111325)
+++ pexecute.c  (working copy)
@@ -102,7 +102,7 @@ pwait (int pid, int *status, int flags A
       vector = XNEWVEC (int, idx);
       if (!pex_get_status (pex, idx, vector))
        {
-         free (vector)
+         free (vector);
          return -1;
        }
       *status = vector[pid];


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]