[Commits] 6fae04ea7d1: Fixed compile warning of windows.
revision-id: 6fae04ea7d17aab3e3ef856c9f6a2d45051b426e (mariadb-10.3.6-42-g6fae04ea7d1) parent(s): f9849766b340ddadfc77e2f6cec9d8424202d5d3 author: Oleksandr Byelkin committer: Oleksandr Byelkin timestamp: 2018-07-06 09:03:13 +0200 message: Fixed compile warning of windows. --- sql/item_subselect.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/item_subselect.cc b/sql/item_subselect.cc index 7af5472d408..eef6755bc98 100644 --- a/sql/item_subselect.cc +++ b/sql/item_subselect.cc @@ -126,7 +126,7 @@ void Item_subselect::init(st_select_lex *select_lex, else engine= new subselect_single_select_engine(select_lex, result, this); } - DBUG_PRINT("info", ("engine: 0x%lx", (ulong)engine)); + DBUG_PRINT("info", ("engine: %p", engine)); DBUG_VOID_RETURN; }
participants (1)
-
Oleksandr Byelkin