diff --git a/harbour/ChangeLog b/harbour/ChangeLog index fcb5c477fa..25f05d5e9f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-09-09 11:34 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * contrib/hbct/numconv.prg + ! Fixed typo. Thanks to Grigory Filatov for reporting it. + 2008-09-09 11:32 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + contrib/hbwhat32/hbwhat.h * contrib/hbwhat32/whtbmp.c diff --git a/harbour/contrib/hbct/numconv.prg b/harbour/contrib/hbct/numconv.prg index cf9bccc2da..9d3bb79f37 100644 --- a/harbour/contrib/hbct/numconv.prg +++ b/harbour/contrib/hbct/numconv.prg @@ -173,7 +173,7 @@ LOCAL nInt IF nNum > 0 nInt := INT( nNum / nBase) - RETURN Iiif(nInt==0, "", B10TOBN( nInt, @nBase )) +; + RETURN iif(nInt==0, "", B10TOBN( nInt, @nBase )) +; SUBSTR( WORLD, ( nNum % nBase ) + 1, 1 ) ELSEIF nNum == 0