mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-22 23:06:18 +00:00
Fix pipe to journal
This commit is contained in:
parent
010521814e
commit
1df23b5a82
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ int server_thread(void *data)
|
|||
}
|
||||
CloseHandle(pipe);
|
||||
#else
|
||||
out_pipe = open(PIPE_PATH, O_WRONLY);
|
||||
out_pipe = open(PIPE_PATH, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
|
||||
active = true;
|
||||
SDL_LockMutex(mutex);
|
||||
if (message_len > 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue