diff options
author | pommicket <pommicket@gmail.com> | 2025-09-28 00:45:33 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-28 00:46:21 -0400 |
commit | 3c9e139aec08d1bb406a6219122ca982b4b7dc34 (patch) | |
tree | 4d7993152bbb76f1d8b7df6de45fb032332b94d0 /lsp.c | |
parent | e78bf3013ddb588638a93bed1f6eff4d0beb5106 (diff) |
Remove trailing white space in source files
Diffstat (limited to 'lsp.c')
-rw-r--r-- | lsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -627,7 +627,7 @@ static int lsp_communication_thread(void *data) { if (!lsp_receive(lsp, (size_t)10<<20)) break; if (SDL_SemWaitTimeout(lsp->quit_sem, send_delay_ms) == 0) - break; + break; } lsp->exited = true; @@ -715,7 +715,7 @@ LSP *lsp_create(const LSPSetup *setup) { lsp->command = str_dup(command); if (configuration && *configuration) lsp->configuration_to_send = str_dup(configuration); - lsp->quit_sem = SDL_CreateSemaphore(0); + lsp->quit_sem = SDL_CreateSemaphore(0); lsp->error_mutex = SDL_CreateMutex(); lsp->messages_mutex = SDL_CreateMutex(); |