Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
rocallahan committed Oct 14, 2023
1 parent 2d0dda1 commit 1d95d3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AddressSpace.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1349,11 +1349,11 @@ void AddressSpace::update_syscall_ips(Task* t) {
}
}

void AddressSpace::unmap_internal(Task* t, remote_ptr<void> addr,
void AddressSpace::unmap_internal(Task*, remote_ptr<void> addr,
ssize_t num_bytes) {
LOG(debug) << "munmap(" << addr << ", " << num_bytes << ")";

auto unmapper = [this, t](Mapping m, MemoryRange rem) {
auto unmapper = [this](Mapping m, MemoryRange rem) {
LOG(debug) << " unmapping (" << rem << ") ...";

remove_from_map(m.map);
Expand Down

0 comments on commit 1d95d3d

Please sign in to comment.