https://git.reactos.org/?p=reactos.git;a=commitdiff;h=81a5b04f6265ef6cfc83248fa531ff0cad330669

commit 81a5b04f6265ef6cfc83248fa531ff0cad330669
Author: Alexander Shaposhnikov <[email protected]>
AuthorDate: Fri Oct 27 21:25:24 2017 +0300

    [RAPPS] Removed redundant static_cast
---
 base/applications/rapps/available.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/base/applications/rapps/available.cpp 
b/base/applications/rapps/available.cpp
index f7577f0afc..a62cc146c2 100644
--- a/base/applications/rapps/available.cpp
+++ b/base/applications/rapps/available.cpp
@@ -387,7 +387,7 @@ skip_if_cached:
         Info->RefreshAppInfo();
 
         if (lpEnumProc)
-            lpEnumProc(static_cast<CAvailableApplicationInfo*>(Info), 
m_szAppsPath.GetString());
+            lpEnumProc(Info, m_szAppsPath.GetString());
 
     } while (FindNextFileW(hFind, &FindFileData) != 0);
 

Reply via email to