diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-06 15:04:57 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-06 15:04:57 +0100 |
commit | 258d798b3404114e1a369814655cdd1612403dde (patch) | |
tree | e663d9c895b1461cb6b78c0b9d9352a3ec04baef /Libraries/LibIPC/ServerConnection.h | |
parent | d17e23bd27eb5c4e5cb7223ee2d9a2f5e22f23bf (diff) | |
download | serenity-258d798b3404114e1a369814655cdd1612403dde.zip |
LibCore: Merge the CSyscallUtils namespace into Core
Diffstat (limited to 'Libraries/LibIPC/ServerConnection.h')
-rw-r--r-- | Libraries/LibIPC/ServerConnection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibIPC/ServerConnection.h b/Libraries/LibIPC/ServerConnection.h index e0aec5de6e..05dcc0a875 100644 --- a/Libraries/LibIPC/ServerConnection.h +++ b/Libraries/LibIPC/ServerConnection.h @@ -100,7 +100,7 @@ public: fd_set rfds; FD_ZERO(&rfds); FD_SET(m_connection->fd(), &rfds); - int rc = CSyscallUtils::safe_syscall(select, m_connection->fd() + 1, &rfds, nullptr, nullptr, nullptr); + int rc = Core::safe_syscall(select, m_connection->fd() + 1, &rfds, nullptr, nullptr, nullptr); if (rc < 0) { perror("select"); } |