Alexander Morozov : kernel32: Fix a typo.
Module: wine Branch: master Commit: ea1e7555a9712ed94e152085b21ded21dfb5f001 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ea1e7555a9712ed94e152085b2... Author: Alexander Morozov <amorozov(a)etersoft.ru> Date: Thu Aug 14 15:05:40 2008 +0400 kernel32: Fix a typo. --- dlls/kernel32/comm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/kernel32/comm.c b/dlls/kernel32/comm.c index 9eeed3d..d83eacb 100644 --- a/dlls/kernel32/comm.c +++ b/dlls/kernel32/comm.c @@ -824,7 +824,7 @@ BOOL WINAPI SetCommState( HANDLE handle, LPDCB lpdcb) SetLastError(ERROR_INVALID_PARAMETER); return FALSE; } - switch (lpdcb->fDtrControl) + switch (lpdcb->fRtsControl) { case RTS_CONTROL_DISABLE: break; case RTS_CONTROL_ENABLE: shf.FlowReplace |= SERIAL_RTS_CONTROL; break;
participants (1)
-
Alexandre Julliard