[PATCH TRIVIAL] char-win-stdio: fix typo in spelling of 'stdio'
Filip Hejsek <[email protected]> Thu, 18 Jun 2026 13:20:18 +0200
| Newsgroups | org.nongnu.qemu-trivial,org.nongnu.qemu-devel |
|---|---|
| Message-ID | <[email protected]> |
Signed-off-by: Filip Hejsek <[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 bb9c195a8b..0deba3bffb 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 = { --- base-commit: c7cf7c810153d6f5f31aa2d5c0dee9087f6b4dff change-id: 20260618-char-win-stdio-typo-5abb197de4e2 Best regards, -- Filip Hejsek <[email protected]>