From 885664701cf9e2ac9fca422b804cbeb2d4335c96 Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Tue, 28 Sep 2010 07:56:15 +0000 Subject: [PATCH] 2010-09-28 09:56 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/src/rtl/hbcom.c ! fixed typo in MS-Windows builds --- harbour/ChangeLog | 4 ++++ harbour/src/rtl/hbcom.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 9f324f296c..6e5c414892 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2010-09-28 09:56 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/src/rtl/hbcom.c + ! fixed typo in MS-Windows builds + 2010-09-28 08:32 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbcom.ch * updated few comments diff --git a/harbour/src/rtl/hbcom.c b/harbour/src/rtl/hbcom.c index 76242263fb..e5a670777c 100644 --- a/harbour/src/rtl/hbcom.c +++ b/harbour/src/rtl/hbcom.c @@ -243,7 +243,7 @@ HB_FHANDLE hb_comGetDeviceHandle( int iPort ) #if defined( HB_HAS_TERMIOS ) hFile = pCom->fd; #elif defined( HB_OS_WIN ) - hFile = ( HB_FHANDLE ) pCom->hCom; + hFile = ( HB_FHANDLE ) pCom->hComm; #elif defined( HB_OS_OS2 ) hFile = ( HB_FHANDLE ) pCom->hFile; #endif