WindowServer: chmod the correct file

This commit is contained in:
Bananymous 2024-09-17 18:35:27 +03:00
parent e431e90b20
commit a6b973003b
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ int open_server_fd()
exit(1);
}
if (chmod("/tmp/resolver.sock", 0777) == -1)
if (chmod(LibGUI::s_window_server_socket.data(), 0777) == -1)
{
perror("chmod");
exit(1);