opt: fix spelling mistake

This commit is contained in:
Yujonpradhananga 2026-02-06 15:18:31 +05:45 committed by DreamMaoMao
parent afe44ff457
commit 656637909d
3 changed files with 40 additions and 40 deletions

View file

@ -254,7 +254,7 @@ static inline int32_t 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
/* 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;
@ -549,4 +549,4 @@ static inline void client_set_size_bound(Client *c) {
state.max_height > 0) {
c->geom.height = state.max_height + 2 * c->bw;
}
}
}