Jacek Caban : conhost: Silence FIXME in console_input_ioctl.

Alexandre Julliard julliard at winehq.org
Mon Jun 28 16:49:36 CDT 2021


Module: wine
Branch: master
Commit: 8dfcc1e3bc97e67fa4a329299e29feb8e5d1b8e2
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=8dfcc1e3bc97e67fa4a329299e29feb8e5d1b8e2

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Mon Jun 28 17:32:38 2021 +0200

conhost: Silence FIXME in console_input_ioctl.

Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 programs/conhost/conhost.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/programs/conhost/conhost.c b/programs/conhost/conhost.c
index 86dadad9277..7db1261d3be 100644
--- a/programs/conhost/conhost.c
+++ b/programs/conhost/conhost.c
@@ -2565,8 +2565,8 @@ static NTSTATUS console_input_ioctl( struct console *console, unsigned int code,
         return STATUS_SUCCESS;
 
     default:
-        FIXME( "unsupported ioctl %x\n", code );
-        return STATUS_NOT_SUPPORTED;
+        WARN( "unsupported ioctl %x\n", code );
+        return STATUS_INVALID_HANDLE;
     }
 }
 




More information about the wine-cvs mailing list