From b20294604c5a64a39b3c5f4491b653e4cf2a3c20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matti=20H=C3=A4nninen?= Date: Wed, 5 Aug 2015 01:24:59 +0300 Subject: Fix old style casts and implicit conversions --- src/Root.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Root.cpp') diff --git a/src/Root.cpp b/src/Root.cpp index cfd609c39..624e95e18 100644 --- a/src/Root.cpp +++ b/src/Root.cpp @@ -756,7 +756,7 @@ int cRoot::GetVirtualRAMUsage(void) if (KERN_SUCCESS == task_info( mach_task_self(), TASK_BASIC_INFO, - (task_info_t)&t_info, + reinterpret_cast(&t_info), &t_info_count )) { @@ -808,7 +808,7 @@ int cRoot::GetPhysicalRAMUsage(void) if (KERN_SUCCESS == task_info( mach_task_self(), TASK_BASIC_INFO, - (task_info_t)&t_info, + reinterpret_cast(&t_info), &t_info_count )) { -- cgit v1.2.3