git: 63c928f17e08 - main - gpioevents: Fix a typo in a diagnostic output message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 27 Dec 2023 08:42:35 UTC
The branch main has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=63c928f17e08f58fd3bd44b45c36ea5df7d15e77 commit 63c928f17e08f58fd3bd44b45c36ea5df7d15e77 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2023-12-27 08:41:48 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2023-12-27 08:41:48 +0000 gpioevents: Fix a typo in a diagnostic output message - s/recieved/received/ MFC after: 3 days --- tools/test/gpioevents/gpioevents.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test/gpioevents/gpioevents.c b/tools/test/gpioevents/gpioevents.c index f90b4e6ea3eb..f1bc8e8ee224 100644 --- a/tools/test/gpioevents/gpioevents.c +++ b/tools/test/gpioevents/gpioevents.c @@ -456,7 +456,7 @@ run_sigio(bool loop, int handle, const char *file) do { if (sigio == 1) { sigio = 0; - printf("%s: recieved SIGIO on %s\n", getprogname(), + printf("%s: received SIGIO on %s\n", getprogname(), file); run_read(false, handle, file, 0); }