diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d4f5879e68..68c15d2b0c 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,11 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-05-21 17:06 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * src/compiler/genhrb.c + ! Fixed very old copy paste error in .hrb generation feedback + text. + 2010-05-21 11:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * examples/gtwvw/gtwvw.c * examples/gtwvw/hbgtwvw.h diff --git a/harbour/src/compiler/genhrb.c b/harbour/src/compiler/genhrb.c index d2e87a6d77..2ecfc38541 100644 --- a/harbour/src/compiler/genhrb.c +++ b/harbour/src/compiler/genhrb.c @@ -159,7 +159,7 @@ void hb_compGenPortObj( HB_COMP_DECL, PHB_FNAME pFileName ) { char buffer[ 80 + HB_PATH_MAX - 1 ]; hb_snprintf( buffer, sizeof( buffer ), - "Generating Harbour Portable Object source output to \'%s\'... ", szFileName ); + "Generating Harbour Portable Object output to \'%s\'... ", szFileName ); hb_compOutStd( HB_COMP_PARAM, buffer ); }