From 3e0d8f7aefe115f7bc318a70f0b03b86342c5142 Mon Sep 17 00:00:00 2001 From: Daniel Coonce Date: Fri, 13 Nov 2020 16:38:31 -0600 Subject: Fix build for x86_64-w64-mingw32 Fixes #1905 --- src/account.cc | 4 ++-- src/item.cc | 2 +- src/post.cc | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/account.cc b/src/account.cc index 5f9f7f51..7ce62fd1 100644 --- a/src/account.cc +++ b/src/account.cc @@ -306,7 +306,7 @@ namespace { } value_t get_addr(account_t& account) { - return long(&account); + return long(reinterpret_cast(&account)); } value_t get_depth_parent(account_t& account) @@ -770,7 +770,7 @@ void put_account(property_tree::ptree& st, const account_t& acct, std::ostringstream buf; buf.width(sizeof(unsigned long) * 2); buf.fill('0'); - buf << std::hex << reinterpret_cast(&acct); + buf << std::hex << reinterpret_cast(&acct); st.put(".id", buf.str()); diff --git a/src/item.cc b/src/item.cc index d46fba8b..06d77c66 100644 --- a/src/item.cc +++ b/src/item.cc @@ -369,7 +369,7 @@ namespace { } value_t get_addr(item_t& item) { - return long(&item); + return long(reinterpret_cast(&item)); } value_t get_depth(item_t&) { diff --git a/src/post.cc b/src/post.cc index 9cc0594b..c9f28e99 100644 --- a/src/post.cc +++ b/src/post.cc @@ -729,7 +729,7 @@ void put_post(property_tree::ptree& st, const post_t& post) std::ostringstream buf; buf.width(sizeof(unsigned long) * 2); buf.fill('0'); - buf << std::hex << reinterpret_cast(post.account); + buf << std::hex << reinterpret_cast(post.account); t.put(".ref", buf.str()); t.put("name", post.account->fullname()); -- cgit v1.2.3