diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 90404c96c5..34e8395c5c 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-10-02 11:49 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * source/vm/extrap.c + * Added "error" text in exception message. + 2008-10-02 10:08 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/hbct/ctmisc.prg + Added dummy functions: diff --git a/harbour/source/vm/extrap.c b/harbour/source/vm/extrap.c index c05bca2e45..6bf88c90e7 100644 --- a/harbour/source/vm/extrap.c +++ b/harbour/source/vm/extrap.c @@ -105,7 +105,7 @@ LONG WINAPI hb_win32ExceptionHandler( struct _EXCEPTION_POINTERS * pExceptionInf hb_dateToday( &iYear, &iMonth, &iDay ); hb_dateTimeStr( szTime ); - fprintf( hLog, HB_I_("Application Exception - %s\n"), hb_cmdargARGV()[0] ); + fprintf( hLog, HB_I_("Application Exception Error - %s\n"), hb_cmdargARGV()[0] ); fprintf( hLog, HB_I_("Terminated at: %04d.%02d.%02d %s\n"), iYear, iMonth, iDay, szTime ); if( *hb_setGetCPtr( HB_SET_HBOUTLOGINFO ) ) fprintf( hLog, HB_I_("Info: %s\n"), hb_setGetCPtr( HB_SET_HBOUTLOGINFO ) );