mirror of
https://github.com/RGBCube/serenity
synced 2025-07-01 06:02:07 +00:00
Kernel: Convert all *Builder::appendf() => appendff()
This commit is contained in:
parent
764af6cdec
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