Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions blobrunner.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void execute(LPVOID base, int offset, bool nopause, bool autobreak, bool debug)
#endif


entry = (LPVOID)((int)base + offset);
entry = (LPVOID)((ULONG_PTR)base + offset);


#ifdef _WIN64
Expand Down Expand Up @@ -190,4 +190,4 @@ int main(int argc, char* argv[])
printf ("Pausing - Press any key to quit.\n");
getchar();
return 0;
}
}