[PULL 2/7] char-win-stdio: fix typo in spelling of 'stdio'
Michael Tokarev <[email protected]> Fri, 24 Jul 2026 12:47:44 +0300
| Newsgroups | org.nongnu.qemu-trivial,org.nongnu.qemu-devel |
|---|---|
| Message-ID | <[email protected]> |
From: Filip Hejsek <[email protected]> Signed-off-by: Filip Hejsek <[email protected]> Reviewed-by: Marc-André Lureau <[email protected]> Reviewed-by: Stefan Weil <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> Reviewed-by: Michael Tokarev <[email protected]> Signed-off-by: Michael Tokarev <[email protected]> --- chardev/char-win-stdio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chardev/char-win-stdio.c b/chardev/char-win-stdio.c index bb9c195a8b1..0deba3bffb0 100644 --- a/chardev/char-win-stdio.c +++ b/chardev/char-win-stdio.c @@ -128,7 +128,7 @@ static void win_stdio_thread_wait_func(void *opaque) SetEvent(stdio->hInputDoneEvent); } -static void win_stiod_chr_set_echo(Chardev *chr, bool echo) +static void win_stdio_chr_set_echo(Chardev *chr, bool echo) { WinStdioChardev *stdio = WIN_STDIO_CHARDEV(chr); DWORD dwMode = 0; @@ -205,7 +205,7 @@ static bool win_stdio_chr_open(Chardev *chr, SetConsoleMode(stdio->hStdIn, dwMode); - win_stiod_chr_set_echo(chr, false); + win_stdio_chr_set_echo(chr, false); qemu_chr_be_event(chr, CHR_EVENT_OPENED); return true; @@ -263,7 +263,7 @@ static void char_win_stdio_class_init(ObjectClass *oc, const void *data) cc->chr_open = win_stdio_chr_open; cc->chr_write = win_stdio_chr_write; - cc->chr_set_echo = win_stiod_chr_set_echo; + cc->chr_set_echo = win_stdio_chr_set_echo; } static const TypeInfo char_win_stdio_type_info = { -- 2.47.3