Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
optix2000 committed Aug 8, 2021
1 parent c001f7e commit ce01da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion patcher/patcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var modPSAPI *windows.LazyDLL = windows.NewLazySystemDLL("psapi.dll")
var procReadProcessMemory *windows.LazyProc = modKernel32.NewProc("ReadProcessMemory")
var procWriteProcessMemory *windows.LazyProc = modKernel32.NewProc("WriteProcessMemory")
var procVirtualProtectEx *windows.LazyProc = modKernel32.NewProc("VirtualProtectEx")
var procVirtualQueryEx *windows.LazyProc = modKernel32.NewProc("VirtualQueryEx")
var procVirtualQueryEx *windows.LazyProc = modKernel32.NewProc("VirtualQueryEx") //lint:ignore U1000 Will use later
var procEnumProcessModules *windows.LazyProc = modPSAPI.NewProc("EnumProcessModules")
var procGetModuleInformation *windows.LazyProc = modPSAPI.NewProc("GetModuleInformation")
var procGetModuleFileNameExA *windows.LazyProc = modPSAPI.NewProc("GetModuleFileNameExA")
Expand Down

0 comments on commit ce01da1

Please sign in to comment.