mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Fix warning
This commit is contained in:
committed by
Vinnie Falco
parent
ccd6b46995
commit
53dabe68ef
@@ -29,8 +29,8 @@ accessViolation()
|
||||
{
|
||||
// dereference memory
|
||||
// location zero
|
||||
int* j = 0;
|
||||
*j++;
|
||||
int volatile* j = 0;
|
||||
(void)*j;
|
||||
}
|
||||
|
||||
// This hook lets you do pre or post
|
||||
|
||||
Reference in New Issue
Block a user