diff options
Diffstat (limited to 'Services/SystemServer/Service.cpp')
-rw-r--r-- | Services/SystemServer/Service.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Services/SystemServer/Service.cpp b/Services/SystemServer/Service.cpp index d5bd06eba4..99b01b5ab6 100644 --- a/Services/SystemServer/Service.cpp +++ b/Services/SystemServer/Service.cpp @@ -211,7 +211,7 @@ void Service::spawn(int socket_fd) if (m_account.has_value()) { auto& account = m_account.value(); if (setgid(account.gid()) < 0 || setgroups(account.extra_gids().size(), account.extra_gids().data()) < 0 || setuid(account.uid()) < 0) { - dbgprintf("Failed to drop privileges (GID=%u, UID=%u)\n", account.gid(), account.uid()); + dbgln("Failed to drop privileges (GID={}, UID={})\n", account.gid(), account.uid()); exit(1); } setenv("HOME", account.home_directory().characters(), true); |