diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2018-07-06 09:03:13 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2018-07-06 09:03:13 +0200 |
commit | 6fae04ea7d17aab3e3ef856c9f6a2d45051b426e (patch) | |
tree | c49aaa4494d193f213b7ac77c1a8ce1ce8b3fab0 | |
parent | f9849766b340ddadfc77e2f6cec9d8424202d5d3 (diff) | |
download | mariadb-git-6fae04ea7d17aab3e3ef856c9f6a2d45051b426e.tar.gz |
Fixed compile warning of windows.
-rw-r--r-- | sql/item_subselect.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |