Skip to content

Commit

Permalink
Update src/printf.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Kévin Petit <kpet@free.fr>
  • Loading branch information
rjodinchr and kpet authored Jul 10, 2023
1 parent 14d4c4d commit e6c74b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/printf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ std::string print_part(const std::string& fmt, const char* data, size_t size) {
finished = true;
} else {
out_size *= 2;
out.reserve(out_size);
out.resize(out_size);
}
}

Expand Down

0 comments on commit e6c74b3

Please sign in to comment.