Update of /cvsroot/monetdb/MonetDB5/src/tools
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1651

Modified Files:
        merovingian.mx 
Log Message:
Attempt to fix icc's complaints when compiling this file.


Index: merovingian.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB5/src/tools/merovingian.mx,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- merovingian.mx      28 Aug 2007 19:32:19 -0000      1.31
+++ merovingian.mx      29 Aug 2007 08:59:05 -0000      1.32
@@ -244,7 +244,7 @@
                        SABAOTHfreeStatus(&stats);
                        return;
                default:
-                       fprintf(stderr, "unknown state: %d", stats->state);
+                       fprintf(stderr, "unknown state: %d", (int)stats->state);
                        SABAOTHfreeStatus(&stats);
                        return;
        }
@@ -287,7 +287,7 @@
                                        SABAOTHfreeStatus(&stats);
                                        return;
                                default:
-                                       fprintf(stderr, "unknown state: %d", 
stats->state);
+                                       fprintf(stderr, "unknown state: %d", 
(int)stats->state);
                                break;
                        }
                }
@@ -435,7 +435,7 @@
                default:
                        SABAOTHfreeStatus(stats);
                        *stats = NULL;
-                       return(newErr("unknown state: %d", (*stats)->state));
+                       return(newErr("unknown state: %d", 
(int)(*stats)->state));
        }
 
        /* create the pipes (filedescriptors) now, such that we and the
@@ -539,7 +539,7 @@
                                                                "database '%s' 
has been put into maintenance "
                                                                "mode during 
startup", database));
                                default:
-                                       return(newErr("unknown state: %d", 
(*stats)->state));
+                                       return(newErr("unknown state: %d", 
(int)(*stats)->state));
                        }
                }
 


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to