mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
HackStudio: Fix path to language-server IPC socket
The path to the language server local socket was accidentally broken
in 2e1bbcb
.
This commit is contained in:
parent
d8513267a6
commit
106e414800
Notes:
sideshowbarker
2024-07-17 20:07:08 +09:00
Author: https://github.com/itamar8910 Commit: https://github.com/SerenityOS/serenity/commit/106e414800b Pull-request: https://github.com/SerenityOS/serenity/pull/12176
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
|||
#define LANGUAGE_CLIENT(language_name_, socket_name) \
|
||||
namespace language_name_ { \
|
||||
class ServerConnection final : public HackStudio::ServerConnection { \
|
||||
IPC_CLIENT_CONNECTION(ServerConnection, "/tmp/portal/language" #socket_name) \
|
||||
IPC_CLIENT_CONNECTION(ServerConnection, "/tmp/portal/language/" #socket_name) \
|
||||
public: \
|
||||
static const char* language_name() { return #language_name_; } \
|
||||
\
|
||||
|
|
Loading…
Reference in a new issue