Skip to content

Commit

Permalink
atoms.cpp: fix a type
Browse files Browse the repository at this point in the history
  • Loading branch information
barracuda156 authored and SokoloffA committed Jun 1, 2024
1 parent b264dec commit 24941c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atoms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ OutFile &operator<<(OutFile &os, const FreeAtom &atom)
{
os << uint32_t(atom.mSize);
os << "free";
for (uint i = 0; i < atom.mSize - 8; ++i) {
for (unsigned i = 0; i < atom.mSize - 8; ++i) {
os << '\0';
}
return os;
Expand Down

0 comments on commit 24941c3

Please sign in to comment.