From f0dbe427ec7c0dd81fc95c1d0d7174b79b6e6587 Mon Sep 17 00:00:00 2001 From: Michael Tokarev Date: Tue, 14 Nov 2023 19:11:33 +0300 Subject: [PATCH] util/filemonitor-inotify.c: spelling fix: kenel Fixes: 2e12dd405c66 "util/filemonitor-inotify: qemu_file_monitor_watch(): assert no overflow" Reviewed-by: Vladimir Sementsov-Ogievskiy Signed-off-by: Michael Tokarev --- util/filemonitor-inotify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/filemonitor-inotify.c b/util/filemonitor-inotify.c index 2121111f38..7352b9fe53 100644 --- a/util/filemonitor-inotify.c +++ b/util/filemonitor-inotify.c @@ -89,7 +89,7 @@ static void qemu_file_monitor_watch(void *arg) struct inotify_event *ev = (struct inotify_event *)(buf + used); /* - * We trust the kenel to provide valid buffer with complete event + * We trust the kernel to provide valid buffer with complete event * records. */ assert(len - used >= sizeof(struct inotify_event));