From: op Date: Mon, 27 Mar 2023 15:36:18 +0000 (+0000) Subject: typo: filed -> failed; ok ratchov@ X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=7f809138c1e69a32b4e294cccef4f7a09c0a3dd6;p=openbsd typo: filed -> failed; ok ratchov@ --- diff --git a/usr.bin/aucat/afile.c b/usr.bin/aucat/afile.c index 6c17746b4d6..c4e589fdbe6 100644 --- a/usr.bin/aucat/afile.c +++ b/usr.bin/aucat/afile.c @@ -406,7 +406,7 @@ afile_wav_readhdr(struct afile *f) pos += sizeof(struct wav_chunk) + csize; if (lseek(f->fd, sizeof(riff) + pos, SEEK_SET) == -1) { log_puts(f->path); - log_puts(": filed to seek to chunk\n"); + log_puts(": failed to seek to chunk\n"); return 0; } } @@ -600,7 +600,7 @@ afile_aiff_readhdr(struct afile *f) if (lseek(f->fd, sizeof(form) + pos, SEEK_SET) == -1) { log_puts(f->path); - log_puts(": filed to seek to chunk\n"); + log_puts(": failed to seek to chunk\n"); return 0; } }