Skip to content

Commit

Permalink
compiler warning on Win64
Browse files Browse the repository at this point in the history
cast pointer(64)->long(32)
  • Loading branch information
vuvova committed May 24, 2017
1 parent ad807ae commit ae76ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/sql_class.h
Expand Up @@ -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; }
Expand Down

0 comments on commit ae76ff4

Please sign in to comment.