1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

Fixed warnings (Thanks to Evan Miller)

This commit is contained in:
Georg Richter
2013-09-30 12:23:13 +02:00
parent 48ec48bb12
commit ead1997dcd
10 changed files with 24 additions and 21 deletions

View File

@@ -189,11 +189,11 @@ static int test_bug6081(MYSQL *mysql)
}
rc= simple_command(mysql, MYSQL_COM_DROP_DB, (char*) schema,
(ulong)strlen(schema), 0U);
(ulong)strlen(schema), 0U, NULL);
FAIL_IF(!rc, "Error expected");
rc= simple_command(mysql, MYSQL_COM_CREATE_DB, (char*) schema,
(ulong)strlen(schema), 0U);
(ulong)strlen(schema), 0U, NULL);
FAIL_IF(!rc, "Error expected");
rc= mysql_select_db(mysql, schema);