From 7f809138c1e69a32b4e294cccef4f7a09c0a3dd6 Mon Sep 17 00:00:00 2001 From: op Date: Mon, 27 Mar 2023 15:36:18 +0000 Subject: [PATCH] typo: filed -> failed; ok ratchov@ --- usr.bin/aucat/afile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } } -- 2.20.1