mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Don't change server suffix if given to configure
Portability fixes
This commit is contained in:
@ -2345,7 +2345,7 @@ int run_query(MYSQL* mysql, struct st_query* q, int flags)
|
||||
if (!disable_info)
|
||||
{
|
||||
char buf[40];
|
||||
sprintf(buf,"affected rows: %ld\n",mysql_affected_rows(mysql));
|
||||
sprintf(buf,"affected rows: %lu\n",(ulong) mysql_affected_rows(mysql));
|
||||
dynstr_append(ds, buf);
|
||||
if (mysql_info(mysql))
|
||||
{
|
||||
|
Reference in New Issue
Block a user