solenv/bin/job-limiter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 24e1d6dbd27fa6c37723b55bbab5f5b5cce279f2 Author: Andrea Gelmini <[email protected]> AuthorDate: Sun Nov 5 14:21:02 2023 +0100 Commit: Julien Nabet <[email protected]> CommitDate: Sun Nov 5 17:51:48 2023 +0100 Fix typo Change-Id: Ie41ca6c56bf44b04bd2d65b6cb64594d66295f24 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158951 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/solenv/bin/job-limiter.cpp b/solenv/bin/job-limiter.cpp index a94aafde9687..9111ead35127 100644 --- a/solenv/bin/job-limiter.cpp +++ b/solenv/bin/job-limiter.cpp @@ -87,7 +87,7 @@ int wmain(int argc, wchar_t* argv[]) semaphore_handle = CreateSemaphoreW(NULL, 3, 4, semaphorename); // keep this process alive for other jobs to grab the semaphore, otherwise it is gone too // quickly and everything creates their own semaphore that immediately has enough slots, - // completely bypassing the point of havig a limiter... + // completely bypassing the point of having a limiter... Sleep(500); } if (semaphore_handle == NULL)
