mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:38:11 +00:00
Everywhere: Fix incorrect uses of String::format and StringBuilder::appendf
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.
This commit is contained in:
parent
099b83fd28
commit
6d97b623cd
9 changed files with 10 additions and 10 deletions
|
@ -227,7 +227,7 @@ void Client::handle_directory_listing(const String& requested_path, const String
|
|||
builder.append(escape_html_entities(name));
|
||||
builder.append("</a></td><td> </td>");
|
||||
|
||||
builder.appendf("<td>%10d</td><td> </td>", st.st_size);
|
||||
builder.appendf("<td>%10zd</td><td> </td>", st.st_size);
|
||||
builder.append("<td>");
|
||||
builder.append(Core::DateTime::from_timestamp(st.st_mtime).to_string());
|
||||
builder.append("</td>");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue