Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Aug 24, 2024
1 parent b39d4e3 commit d7e7fcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ std::string dump(const uint8_t* buffer, size_t size,
out = prefix + "+" + std::string(22 * 3, '-') + "---+" + "\n" + prefix + "| ";
}

if (i > 0 and i % 16 == 0) {
if (i > 0 && i % 16 == 0) {
out += "\n" + prefix + "| ";
}

Expand Down

0 comments on commit d7e7fcc

Please sign in to comment.