Commit ae76ff45 authored by Sergei Golubchik's avatar Sergei Golubchik

compiler warning on Win64

cast pointer(64)->long(32)
parent ad807aeb
......@@ -4283,7 +4283,7 @@ class select_result_interceptor: public select_result
select_result(thd_arg), suppress_my_ok(false)
{
DBUG_ENTER("select_result_interceptor::select_result_interceptor");
DBUG_PRINT("enter", ("this 0x%lx", (ulong) this));
DBUG_PRINT("enter", ("this %p", this));
DBUG_VOID_RETURN;
} /* Remove gcc warning */
uint field_count(List<Item> &fields) const { return 0; }
......
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