WIP: Correct all typos (#498)

This commit is contained in:
jared 2022-07-20 17:01:15 -04:00 committed by GitHub
parent 98254a7c1f
commit ed205e98a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
79 changed files with 162 additions and 162 deletions

View file

@ -229,7 +229,7 @@ static const struct itimerval kTimerDisarm = {
{0, 0},
};
static const struct itimerval kTimerHalfSecordSingleShot = {
static const struct itimerval kTimerHalfSecondSingleShot = {
{0, 0},
{0, 500000},
};
@ -353,7 +353,7 @@ static bool CloseSpeaker(void) {
if (playpid_) {
kill(playpid_, SIGTERM);
xsigaction(SIGALRM, StrikeDownCrapware, SA_RESETHAND, 0, 0);
setitimer(ITIMER_REAL, &kTimerHalfSecordSingleShot, NULL);
setitimer(ITIMER_REAL, &kTimerHalfSecondSingleShot, NULL);
while (playpid_) {
if (waitpid(playpid_, &wstatus, 0) != -1) {
rc |= WEXITSTATUS(wstatus);