mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
One should not only have to include my_net.h to work with sockets.
This wrapper noew will include all the necessary, system specific files, which makes all normal source files much easier to write and maintain. Portability fixes.
This commit is contained in:
@@ -713,7 +713,7 @@ static void print_res_header(MYSQL_RES *result)
|
||||
putchar('|');
|
||||
while ((field = mysql_fetch_field(result)))
|
||||
{
|
||||
printf(" %-*s|",field->max_length+1,field->name);
|
||||
printf(" %-*s|",(int) field->max_length+1,field->name);
|
||||
}
|
||||
putchar('\n');
|
||||
print_res_top(result);
|
||||
|
Reference in New Issue
Block a user