summaryrefslogtreecommitdiff
path: root/client.h
diff options
context:
space:
mode:
author0undefined <oscar@nelin.dk>2025-10-17 15:45:28 +0000
committer0undefined <oscar@nelin.dk>2025-10-17 15:45:28 +0000
commit2d924afa8e41fe92c29724d1c36b99a4242f4f18 (patch)
tree7fc8710bdcfc1f80ee72fb4d27fab2a0f09a78b2 /client.h
parent964b3f9ce49bb5d5de229ecb29d970b6bb2155a7 (diff)
parent6cd26568d5b8be2252ac0def36cd194b4fb2d7c3 (diff)
Merge remote-tracking branch 'upstream/main'
Diffstat (limited to 'client.h')
-rw-r--r--client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/client.h b/client.h
index 18000b0..83e1c57 100644
--- a/client.h
+++ b/client.h
@@ -276,8 +276,8 @@ client_is_stopped(Client *c)
wl_client_get_credentials(c->surface.xdg->client->client, &pid, NULL, NULL);
if (waitid(P_PID, pid, &in, WNOHANG|WCONTINUED|WSTOPPED|WNOWAIT) < 0) {
- /* This process is not our child process, while is very unluckely that
- * it is stopped, in order to do not skip frames assume that it is. */
+ /* This process is not our child process, while is very unlikely that
+ * it is stopped, in order to do not skip frames, assume that it is. */
if (errno == ECHILD)
return 1;
} else if (in.si_pid) {