Commit bc250145 authored by Marko Mäkelä's avatar Marko Mäkelä

Remove an unused variable

parent 3c21eccb
...@@ -502,7 +502,7 @@ static os_event_t dbug_start_query_thread( ...@@ -502,7 +502,7 @@ static os_event_t dbug_start_query_thread(
mysql_thread_id(par->con), wait_state); mysql_thread_id(par->con), wait_state);
for (;;) { for (;;) {
MYSQL_RES *result = xb_mysql_query(mysql_connection,q, true, true); MYSQL_RES *result = xb_mysql_query(mysql_connection,q, true, true);
while (MYSQL_ROW row = mysql_fetch_row(result)) { if (mysql_fetch_row(result)) {
goto end; goto end;
} }
msg_ts("Waiting for query '%s' on connection %lu to " msg_ts("Waiting for query '%s' on connection %lu to "
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment