diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 52a9e67635..7f75618e31 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,13 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-04-22 18:32 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * src/common/hbtrace.c + ! Fixed another typo in recent modifications. + [Too bad syslog() is missing from watcom. Makes testing + much painful.] + Please test. + 2010-04-22 18:29 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * contrib/gtwvg/Makefile * contrib/hbwin/Makefile diff --git a/harbour/src/common/hbtrace.c b/harbour/src/common/hbtrace.c index cad278a378..d1fc90d922 100644 --- a/harbour/src/common/hbtrace.c +++ b/harbour/src/common/hbtrace.c @@ -182,7 +182,7 @@ static void hb_tracelog_( int level, const char * file, int line, const char * p { const char * pszLevel; -#if defined( HB_OS_WIN ) && ! defined( HB_OS_WIN_CE ) +#if defined( HB_OS_UNIX ) && ! defined( __WATCOMC__ ) va_list ap_bak; va_copy( ap_bak, ap ); #endif @@ -292,7 +292,6 @@ static void hb_tracelog_( int level, const char * file, int line, const char * p } syslog( slevel, psz ); - #endif } }