1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fix warnings on Windows.

This commit is contained in:
kostja@bodhi.local
2007-03-21 20:32:15 +03:00
parent 39eafdd853
commit 102f298a6f

View File

@@ -1366,7 +1366,7 @@ Event_queue_element::compute_next_execution_time()
goto ret;
}
time_now= current_thd->query_start();
time_now= (my_time_t) current_thd->query_start();
DBUG_PRINT("info",("NOW: [%lu]", (ulong) time_now));
@@ -1572,7 +1572,7 @@ Event_queue_element::mark_last_executed(THD *thd)
{
thd->end_time();
last_executed= thd->query_start();
last_executed= (my_time_t) thd->query_start();
last_executed_changed= TRUE;
execution_count++;