From 8517f3b2741ea99c00808cf858d48a4a5c8d881c Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Fri, 15 Jan 2010 19:48:16 +0000 Subject: [PATCH] 2010-01-15 20:48 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/contrib/hbnetio/netiosrv.c ! fixed c&p typo - it should fix problem reported by Viktor in netiostv * harbour/contrib/hbwin/win_prn1.c * casting --- harbour/ChangeLog | 7 +++++++ harbour/contrib/hbnetio/netiosrv.c | 1 - harbour/contrib/hbwin/win_prn1.c | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index de30f64a25..fe6d16b9d0 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,13 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-01-15 20:48 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/contrib/hbnetio/netiosrv.c + ! fixed c&p typo - it should fix problem reported by Viktor in netiostv + + * harbour/contrib/hbwin/win_prn1.c + * casting + 2010-01-15 20:25 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * contrib/hbct/disk.c ! TRUENAME() compiler time error fixed for non-win OS after recent change. diff --git a/harbour/contrib/hbnetio/netiosrv.c b/harbour/contrib/hbnetio/netiosrv.c index 5972c9d436..b7fbefe266 100644 --- a/harbour/contrib/hbnetio/netiosrv.c +++ b/harbour/contrib/hbnetio/netiosrv.c @@ -1043,7 +1043,6 @@ HB_FUNC( NETIO_SERVER ) } else if( conn->rpcFunc ) { - fSend = HB_TRUE; hb_vmPushSymbol( conn->rpcFunc ); hb_vmPushNil(); hb_vmPushDynSym( pDynSym ); diff --git a/harbour/contrib/hbwin/win_prn1.c b/harbour/contrib/hbwin/win_prn1.c index 17cccd17b7..de34c73785 100644 --- a/harbour/contrib/hbwin/win_prn1.c +++ b/harbour/contrib/hbwin/win_prn1.c @@ -288,7 +288,7 @@ HB_FUNC( WIN_TEXTOUT ) if( iWidth < 0 && nLen < 1024 ) { - int n = nLen, aFixed[ 1024 ]; + int n = ( int ) nLen, aFixed[ 1024 ]; iWidth = -iWidth;