Update of /cvsroot/boost/boost/tools/jam/src
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3095/tools/jam_994/src

Modified Files:
      Tag: Boost_Jam_994
        execnt.c 
Log Message:
Fix missing args, to make things compile on Windows.

Index: execnt.c
===================================================================
RCS file: /cvsroot/boost/boost/tools/jam/src/execnt.c,v
retrieving revision 1.32.2.2
retrieving revision 1.32.2.3
diff -u -d -r1.32.2.2 -r1.32.2.3
--- execnt.c    4 Jun 2007 23:38:42 -0000       1.32.2.2
+++ execnt.c    6 Jun 2007 05:59:02 -0000       1.32.2.3
@@ -75,11 +75,10 @@
 
 static struct
 {
-       int     pid; /* on win32, a real process handle */
-       void    (*func)( void *closure, int status, timing_info* );
-       void    *closure;
-       char    *tempfile;
-
+    int     pid; /* on win32, a real process handle */
+    void    (*func)( void *closure, int status, timing_info*, char *, char * );
+    void    *closure;
+    char    *tempfile;
 } cmdtab[ MAXJOBS ] = {{0}};
 
 
@@ -709,7 +708,7 @@
             else
                 result = 1;
         }
-        func( closure, result ? EXEC_CMD_FAIL : EXEC_CMD_OK, &time );
+        func( closure, result ? EXEC_CMD_FAIL : EXEC_CMD_OK, &time, "*", "*" );
         return;
     }
 
@@ -834,7 +833,7 @@
             BJAM_FREE(cmdtab[i].tempfile);
             cmdtab[i].tempfile = NULL;
        }
-       (*cmdtab[ i ].func)( cmdtab[ i ].closure, rstat, &time );
+       (*cmdtab[ i ].func)( cmdtab[ i ].closure, rstat, &time, "*", "*" );
 
        return 1;
 }


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to