From 8b2779bf61993ead742a95f3abda5d96a7a86644 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sat, 28 Mar 2015 19:07:04 +0100 Subject: Clean up C-style casts from pointers to void Change-Id: Ia1facd79ccfa142412c833bded0d65b50e71d961 --- starmath/source/smdll.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'starmath/source/smdll.cxx') diff --git a/starmath/source/smdll.cxx b/starmath/source/smdll.cxx index f1a1bc6a7d6d..eea84b3e6080 100644 --- a/starmath/source/smdll.cxx +++ b/starmath/source/smdll.cxx @@ -51,7 +51,7 @@ namespace SmDLL::SmDLL() { - SmModule** ppShlPtr = (SmModule**) GetAppData(SHL_SM); + SmModule** ppShlPtr = reinterpret_cast(GetAppData(SHL_SM)); if ( *ppShlPtr ) return; -- cgit