From 492cab9b556b8c143efc6da5ecac3b4f1e34b4d1 Mon Sep 17 00:00:00 2001 From: kento <37926134+kkent030315@users.noreply.github.com> Date: Sat, 15 May 2021 19:21:42 +0900 Subject: [PATCH] code cleanup --- anycall/helper.hpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/anycall/helper.hpp b/anycall/helper.hpp index c32b444..7cbaf90 100644 --- a/anycall/helper.hpp +++ b/anycall/helper.hpp @@ -250,9 +250,9 @@ namespace helper // const void* module_base = LoadLibraryEx( - module_name.data(), // file name - NULL, // file handle - DONT_RESOLVE_DLL_REFERENCES ); // flags + module_name.data(), // file name + NULL, // file handle + DONT_RESOLVE_DLL_REFERENCES ); // flags if ( !module_base ) { @@ -339,7 +339,8 @@ namespace helper } pNtQuerySystemInformation NtQuerySystemInformation = - ( pNtQuerySystemInformation )GetProcAddress( module_handle, "NtQuerySystemInformation" ); + ( pNtQuerySystemInformation ) + GetProcAddress( module_handle, "NtQuerySystemInformation" ); if ( !NtQuerySystemInformation ) {