Changeset: 04976807ce59 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=04976807ce59
Modified Files:
        clients/odbc/driver/SQLDriverConnect.c
Branch: Dec2011
Log Message:

ODBCConnectionString: fix type mismatch accoring to compiler


diffs (12 lines):

diff --git a/clients/odbc/driver/SQLDriverConnect.c 
b/clients/odbc/driver/SQLDriverConnect.c
--- a/clients/odbc/driver/SQLDriverConnect.c
+++ b/clients/odbc/driver/SQLDriverConnect.c
@@ -228,7 +228,7 @@ ODBCConnectionString(SQLRETURN rc,
                        );
 
 #ifdef ODBCDEBUG
-       ODBCLOG("ConnectionString: \"%.*s\" %d\n", buf ? buflen : 6, buf ? buf 
: "(null)", buflen);
+       ODBCLOG("ConnectionString: \"%.*s\" %d\n", buf ? buflen : 6, buf ? 
(char *) buf : "(null)", buflen);
 #endif
 
        /* if it didn't fit, say so */
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to