diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-09 16:08:43 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-09 19:18:13 +0100 |
commit | 1f277f0bd9d6b74b3a521bd1dc280372b661d81d (patch) | |
tree | e1c94652053305517d0a44e59e8dfc414d9471ec /Kernel/Arch | |
parent | 764af6cdecb0e86a163f52472b6ffe5e1504628f (diff) | |
download | serenity-1f277f0bd9d6b74b3a521bd1dc280372b661d81d.zip |
Kernel: Convert all *Builder::appendf() => appendff()
Diffstat (limited to 'Kernel/Arch')
-rw-r--r-- | Kernel/Arch/i386/ProcessorInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Arch/i386/ProcessorInfo.cpp b/Kernel/Arch/i386/ProcessorInfo.cpp index 273389424d..2c101c3eb1 100644 --- a/Kernel/Arch/i386/ProcessorInfo.cpp +++ b/Kernel/Arch/i386/ProcessorInfo.cpp @@ -39,7 +39,7 @@ ProcessorInfo::ProcessorInfo(Processor& processor) CPUID cpuid(0); StringBuilder builder; auto emit_u32 = [&](u32 value) { - builder.appendf("%c%c%c%c", + builder.appendff("{:c}{:c}{:c}{:c}", value & 0xff, (value >> 8) & 0xff, (value >> 16) & 0xff, |