Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the warning about pointer arithmetic in `client.cpp`. * Change the pointer arithmetic in the `segfault` function to use `uintptr_t`. * Update the comparison `faulting_address < (ptr + sz)` to `(uintptr_t)faulting_address < ((uintptr_t)ptr + sz)`. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/kevmo314/scuda?shareId=XXXX-XXXX-XXXX-XXXX).
- Loading branch information