summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/syslog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibC/syslog.cpp')
-rw-r--r--Userland/Libraries/LibC/syslog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibC/syslog.cpp b/Userland/Libraries/LibC/syslog.cpp
index d45d85127f..7e17a51498 100644
--- a/Userland/Libraries/LibC/syslog.cpp
+++ b/Userland/Libraries/LibC/syslog.cpp
@@ -119,9 +119,9 @@ void vsyslog_r(int priority, struct syslog_data* data, const char* message, va_l
// Some metadata would be consumed by a syslog daemon, if we had one.
if (data->logopt & LOG_PID)
- combined.appendf("%s[%d]: ", get_syslog_ident(data), getpid());
+ combined.appendff("{}[{}]: ", get_syslog_ident(data), getpid());
else
- combined.appendf("%s: ", get_syslog_ident(data));
+ combined.appendff("{}: ", get_syslog_ident(data));
combined.appendvf(message, args);
String combined_string = combined.build();