From 56009aeac68e8a59877f2a06dae6f4af0ed35f8b Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 11 Feb 2009 19:49:09 +0000 Subject: [PATCH] and some minor typos in code --- harbour/source/rtl/binnumx.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/harbour/source/rtl/binnumx.c b/harbour/source/rtl/binnumx.c index e90be930ef..4854978c13 100644 --- a/harbour/source/rtl/binnumx.c +++ b/harbour/source/rtl/binnumx.c @@ -70,9 +70,9 @@ HB_FUNC( BIN2U ) { const char * pszString = hb_itemGetCPtr( pItem ); if( ulLen >= 3 ) - iResult = HB_GET_LE_UINT32( pszString ); + uiResult = HB_GET_LE_UINT32( pszString ); else - iResult = HB_GET_LE_UINT16( pszString ); + uiResult = HB_GET_LE_UINT16( pszString ); } } hb_retnint( uiResult ); @@ -81,8 +81,8 @@ HB_FUNC( BIN2U ) HB_FUNC( U2BIN ) { char szResult[ 4 ]; - UINT32 iValue = ( UINT32 ) hb_parnint( 1 ); - HB_PUT_LE_UINT32( szResult, iValue ); + UINT32 uiValue = ( UINT32 ) hb_parnint( 1 ); + HB_PUT_LE_UINT32( szResult, uiValue ); hb_retclen( szResult, 4 ); }