mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 22:12:59 +08:00
refactor: correct variable naming
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
84d44a61f6
commit
d56abe6f60
@@ -23,8 +23,8 @@ bool isShutdownInProgress() {
|
||||
return true;
|
||||
}
|
||||
|
||||
auto RtlDllShutdownInProgress = reinterpret_cast<BOOLEAN(WINAPI *)()>(GetProcAddress(handle, "RtlDllShutdownInProgress"));
|
||||
return RtlDllShutdownInProgress();
|
||||
auto rtlDllShutdownInProgress = reinterpret_cast<BOOLEAN(WINAPI *)()>(GetProcAddress(handle, "RtlDllShutdownInProgress"));
|
||||
return rtlDllShutdownInProgress();
|
||||
}
|
||||
|
||||
namespace SysCalls {
|
||||
|
||||
Reference in New Issue
Block a user