2015-08-31 23:48 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* contrib/hbnetio/netiosrv.c
    ! removed unnecessary casting (c&p typo)
This commit is contained in:
Przemysław Czerpak
2015-08-31 23:48:08 +02:00
parent db3fe4b8d4
commit 310e2134bd
2 changed files with 5 additions and 1 deletions

View File

@@ -10,6 +10,10 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2015-08-31 23:48 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/hbnetio/netiosrv.c
! removed unnecessary casting (c&p typo)
2015-08-31 23:43 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/hbmzip/mzip.c
* contrib/hbnetio/netiocli.c

View File

@@ -1230,7 +1230,7 @@ HB_FUNC( NETIO_SERVER )
HB_PUT_LE_UINT32( &msg[ 4 ], len );
HB_PUT_LE_UINT32( &msg[ 8 ], errFsCode );
memset( msg + 12, '\0', NETIO_MSGLEN - 12 );
if( len == ( HB_SIZE ) FS_ERROR )
if( len == FS_ERROR )
len = 0;
}
}