Modified:
trunk/testsuites/t_jbalint/basic.c
Log:
Fix variable type (to avoid compiler warning that confuses test results parser)
Modified: trunk/testsuites/t_jbalint/basic.c
===================================================================
--- trunk/testsuites/t_jbalint/basic.c 2007-10-09 19:47:28 UTC (rev 166)
+++ trunk/testsuites/t_jbalint/basic.c 2007-10-11 23:31:25 UTC (rev 167)
@@ -47,7 +47,7 @@
{
SQLHANDLE stmt = get_statement();
SQLHANDLE dbc = get_dbc_handle();
- const char *tstcatalog = "information_schema";
+ const SQLCHAR *tstcatalog = "information_schema";
SQLCHAR initcatalog[STRLEN];
SQLCHAR getcatalog[STRLEN];
@@ -75,4 +75,4 @@
/* set it back */
CHECK_SQL(SQLSetConnectAttr(dbc, SQL_ATTR_CURRENT_CATALOG,
initcatalog, SQL_NTS), dbc, SQL_HANDLE_DBC);
-}
\ No newline at end of file
+}
| Thread |
|---|
| • ODBC C-tests commit: r167 - trunk/testsuites/t_jbalint | jwinstead | 12 Oct |