From 1e27261d6478922f724537b856a6598df431a91c Mon Sep 17 00:00:00 2001 From: Ron Pinkas Date: Sat, 9 Feb 2002 22:20:02 +0000 Subject: [PATCH] 2002-02-09 14:12 UTC-0800 Ron Pinkas * source/compiler/hbgenerr.c ! Fixed incorrect position of "4Suspicious operand type: \'unknown\' expected: \'%s\'". --- harbour/ChangeLog | 4 ++++ harbour/source/compiler/hbgenerr.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 5ecf59c7cd..36844d6e05 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -7,6 +7,10 @@ For example: 2002-12-01 23:12 UTC+0100 Foo Bar */ + +2002-02-10 18:50 UTC+0300 Alexander Kresin + * source/vm/runner.c + * source/vm/dynlibhb.c ! Fixed problems with hb_strupr( ( hb_parc(1) ) by using hb_strdup() * source/rdd/workarea.c ! Fixed a bug in hb_waAddField() diff --git a/harbour/source/compiler/hbgenerr.c b/harbour/source/compiler/hbgenerr.c index 7beecfb89c..f54d7e183f 100644 --- a/harbour/source/compiler/hbgenerr.c +++ b/harbour/source/compiler/hbgenerr.c @@ -101,9 +101,9 @@ char * hb_comp_szWarnings[] = "1Function \'%s\' does not end with RETURN statement", "3Incompatible type in assignment to: \'%s\' expected: \'%s\'", "3Incompatible operand type: \'%s\' expected: \'%s\'", - "4Suspicious operand type: \'unknown\' expected: \'%s\'", "3Incompatible operand types: \'%s\' and: \'%s\'", "4Suspicious type in assignment to: \'%s\' expected: \'%s\'", + "4Suspicious operand type: \'unknown\' expected: \'%s\'", "3Can\'t use array index with non-array", "3Incompatible return type: \'%s\' expected: \'%s\'", "4Suspicious return type: \'%s\' expected: \'%s\'",