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.
This commit is contained in:
Viktor Szakats
2010-04-22 16:33:17 +00:00
parent ab0e53cbe1
commit d308cb7a32
2 changed files with 8 additions and 2 deletions

View File

@@ -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

View File

@@ -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
}
}