mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 00:54:30 +02:00
Fixing compile-time failures in recently pushed code (aCC, Sun Studio)
(Bug#7381) libmysql/libmysql.c: Fixing compile-time failures in recently pushed code (aCC) tests/client_test.c: Fix a couple of -pedantic warnings.
This commit is contained in:
parent
b5b1e87e75
commit
6ce4c255df
2 changed files with 13 additions and 11 deletions
|
|
@ -11936,7 +11936,7 @@ static void test_bug4172()
|
|||
MYSQL_ROW row;
|
||||
int rc;
|
||||
char f[100], d[100], e[100];
|
||||
long f_len, d_len, e_len;
|
||||
ulong f_len, d_len, e_len;
|
||||
|
||||
myheader("test_bug4172");
|
||||
|
||||
|
|
@ -12027,8 +12027,8 @@ static void test_conversion()
|
|||
|
||||
mysql_stmt_bind_param(stmt, bind);
|
||||
|
||||
buff[0]= 0xC3;
|
||||
buff[1]= 0xA0;
|
||||
buff[0]= (uchar) 0xC3;
|
||||
buff[1]= (uchar) 0xA0;
|
||||
length= 2;
|
||||
|
||||
rc= mysql_stmt_execute(stmt);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue