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
This commit is contained in:
Przemyslaw Czerpak
2010-01-15 19:48:16 +00:00
parent b943e3f350
commit 8517f3b274
3 changed files with 8 additions and 2 deletions

View File

@@ -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.

View File

@@ -1043,7 +1043,6 @@ HB_FUNC( NETIO_SERVER )
}
else if( conn->rpcFunc )
{
fSend = HB_TRUE;
hb_vmPushSymbol( conn->rpcFunc );
hb_vmPushNil();
hb_vmPushDynSym( pDynSym );

View File

@@ -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;