diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 1f8cb88a03..9cf9a31a16 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +2000-06-04 03:30 UTC-0800 Ron Pinkas + * source/pp/ppcore.c + * Corrected error message in SetRules() to report filename with default extension. + 2000-06-04 03:25 UTC-0800 Ron Pinkas * source/pp/ppcore.c * Added \n to error message in SetRules() diff --git a/harbour/source/pp/ppcore.c b/harbour/source/pp/ppcore.c index ce9badbe0f..c4a710f081 100644 --- a/harbour/source/pp/ppcore.c +++ b/harbour/source/pp/ppcore.c @@ -245,7 +245,7 @@ void hb_pp_SetRules( BOOL (*hb_compInclude)(char *, PATHNAMES * ) ) } else { - printf( "Can\'t open standard rule file: \'%s\'\n", hb_pp_STD_CH ); + printf( "Can\'t open standard rule file: \'%s\'\n", szFileName ); } } }