Skip to content

Commit

Permalink
Log more data when we hit this assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
rocallahan committed Nov 3, 2023
1 parent 28226b8 commit 625eb27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EmuFs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ EmuFile::shr_ptr EmuFile::clone(EmuFs& owner) {
break;
}
if (uint64_t(ret) <= offset) {
FATAL() << "Zero sized hole?";
FATAL() << "Zero sized hole? Got " << ret << " expected " << offset;
}
// Skip the hole
offset = ret;
Expand Down

0 comments on commit 625eb27

Please sign in to comment.