mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
Everywhere: Convert a handful of String::format() => formatted()
This commit is contained in:
@@ -191,7 +191,7 @@ void RemoteProcess::update()
|
||||
}
|
||||
};
|
||||
|
||||
auto success = m_socket->connect(Core::SocketAddress::local(String::format("/tmp/rpc/%d", m_pid)));
|
||||
auto success = m_socket->connect(Core::SocketAddress::local(String::formatted("/tmp/rpc/{}", m_pid)));
|
||||
if (!success) {
|
||||
warnln("Couldn't connect to PID {}", m_pid);
|
||||
exit(1);
|
||||
|
||||
Reference in New Issue
Block a user