git: 48aab71d0d2a - stable/13 - gpioevents: Fix a typo in a diagnostic output message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 07 Jan 2024 11:45:05 UTC
The branch stable/13 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=48aab71d0d2a73eab0cbddd746b7f7dcdecd7532
commit 48aab71d0d2a73eab0cbddd746b7f7dcdecd7532
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2023-12-27 08:41:48 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-01-07 11:44:16 +0000
gpioevents: Fix a typo in a diagnostic output message
- s/recieved/received/
(cherry picked from commit 63c928f17e08f58fd3bd44b45c36ea5df7d15e77)
---
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);
}