From 4601ac8eae54cce75f1c9e9d72c490b847caaf85 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 9 Sep 2008 09:35:15 +0000 Subject: [PATCH] 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. --- harbour/ChangeLog | 4 ++++ harbour/contrib/hbct/numconv.prg | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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