1
0
mirror of https://github.com/MariaDB/server.git synced 2025-06-12 01:53:02 +03:00

swapping lines to make gcc happy

libmysql/libmysql.c:
  fix to make autobuild happy.
This commit is contained in:
unknown
2004-06-19 15:35:41 +02:00
parent 227f223d6b
commit 5777892b66

View File

@ -1287,8 +1287,8 @@ int STDCALL
mysql_shutdown(MYSQL *mysql, enum enum_shutdown_level shutdown_level)
{
uchar level[1];
level[0]= (uchar) shutdown_level;
DBUG_ENTER("mysql_shutdown");
level[0]= (uchar) shutdown_level;
DBUG_RETURN(simple_command(mysql, COM_SHUTDOWN, (char *)level, 1, 0));
}