Update of /cvsroot/monetdb/sql/src/server
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22075/sql/src/server

Modified Files:
        sql_sequence.mx 
Log Message:

fixed another type mismatch found by the Microsoft compiler


U sql_sequence.mx
Index: sql_sequence.mx
===================================================================
RCS file: /cvsroot/monetdb/sql/src/server/sql_sequence.mx,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- sql_sequence.mx     6 Sep 2008 20:02:49 -0000       1.48
+++ sql_sequence.mx     9 Sep 2008 11:02:35 -0000       1.49
@@ -174,7 +174,7 @@
 sql_next_seq_name(mvc *m)
 {
        oid id = store_next_oid();
-       int len = 5 + ((id+7)>>3);
+       oid len = 5 + ((id+7)>>3);
        char *msg = sa_alloc(m->sa, len);
 
        snprintf(msg, len, "seq_%d", store_next_oid());


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to