mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-01 07:52:50 +00:00
Kernel: Convert all *Builder::appendf() => appendff()
This commit is contained in:
parent
764af6cdec
commit
1f277f0bd9
Notes:
sideshowbarker
2024-07-18 22:28:28 +09:00
Author: https://github.com/awesomekling
Commit: 1f277f0bd9
8 changed files with 12 additions and 34 deletions
|
@ -445,7 +445,7 @@ static bool procfs$devices(InodeIdentifier, KBufferBuilder& builder)
|
|||
|
||||
static bool procfs$uptime(InodeIdentifier, KBufferBuilder& builder)
|
||||
{
|
||||
builder.appendf("%llu\n", TimeManagement::the().uptime_ms() / 1000);
|
||||
builder.appendff("{}\n", TimeManagement::the().uptime_ms() / 1000);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -659,7 +659,7 @@ static bool procfs$pid_root(InodeIdentifier identifier, KBufferBuilder& builder)
|
|||
|
||||
static bool procfs$self(InodeIdentifier, KBufferBuilder& builder)
|
||||
{
|
||||
builder.appendf("%d", Process::current()->pid().value());
|
||||
builder.appendff("{}", Process::current()->pid().value());
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue