Update of /cvsroot/monetdb/pathfinder/runtime
In directory sc8-pr-cvs16:/tmp/cvs-serv32041/runtime

Modified Files:
        pathfinder.mx serialize_dflt.mx serialize_sax.mx 
        xrpc_server.mx 
Log Message:
Add void to function definitions when the functions don't take any
parameters.  Who know, maybe this helps the internal compiler error in
icc on Linux.


Index: serialize_sax.mx
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/runtime/serialize_sax.mx,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- serialize_sax.mx    22 Mar 2007 09:39:07 -0000      1.15
+++ serialize_sax.mx    16 Apr 2007 12:06:32 -0000      1.16
@@ -127,7 +127,7 @@
 }
 
 static bool
-emit_SAX_footer ()
+emit_SAX_footer (void)
 {
     return SUCCESS;
 }

Index: serialize_dflt.mx
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/runtime/serialize_dflt.mx,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- serialize_dflt.mx   12 Apr 2007 12:17:02 -0000      1.37
+++ serialize_dflt.mx   16 Apr 2007 12:06:32 -0000      1.38
@@ -98,7 +98,7 @@
  * constructor function for the default workspace
  */
 static dflt_ws_t *
-new_dflt_ws ()
+new_dflt_ws (void)
 {
     dflt_ws_t *dflt_ws_ = GDKmalloc (sizeof (dflt_ws_t));
 

Index: pathfinder.mx
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/runtime/pathfinder.mx,v
retrieving revision 1.333
retrieving revision 1.334
diff -u -d -r1.333 -r1.334
--- pathfinder.mx       12 Apr 2007 17:07:07 -0000      1.333
+++ pathfinder.mx       16 Apr 2007 12:06:32 -0000      1.334
@@ -4729,7 +4729,7 @@
  * (postponed to the next initialization of the record)
  */
 static void
-xquery_client_flushall()
+xquery_client_flushall(void)
 {
     int i, wait = 100;
     while(wait) {

Index: xrpc_server.mx
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/runtime/xrpc_server.mx,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- xrpc_server.mx      3 Apr 2007 00:06:33 -0000       1.32
+++ xrpc_server.mx      16 Apr 2007 12:06:32 -0000      1.33
@@ -1272,7 +1272,7 @@
 }
 
 
-void xrpc_epilogue()
+void xrpc_epilogue(void)
 {
     shttpd_fini();      /* Shut down the HTTP server. */
     rpcd_running = 0;   /* Stop RPC server */


-------------------------------------------------------------------------
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/
_______________________________________________
Monetdb-pf-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins

Reply via email to