From c314a2e0eeb0493ee145736b18d104edcd888045 Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Mon, 7 Sep 2009 11:35:28 +0000 Subject: [PATCH] 2009-09-07 13:35 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/compiler/hbmain.c ! fixed HB_TRACE() message - thanks to Tamas Tevesz for info. * harbour/source/rtl/hbproces.c * harbour/contrib/xhb/txtline.c ! fixed HB_TRACE() messages --- harbour/ChangeLog | 8 ++++++++ harbour/contrib/xhb/txtline.c | 2 +- harbour/source/compiler/hbmain.c | 2 +- harbour/source/rtl/hbproces.c | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 939806204a..045e898b83 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,14 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-09-07 13:35 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/compiler/hbmain.c + ! fixed HB_TRACE() message - thanks to Tamas Tevesz for info. + + * harbour/source/rtl/hbproces.c + * harbour/contrib/xhb/txtline.c + ! fixed HB_TRACE() messages + 2009-09-07 12:03 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * bin/postinst.bat + Installation of hb-mkimp.bat will now be done automatically diff --git a/harbour/contrib/xhb/txtline.c b/harbour/contrib/xhb/txtline.c index f18a0f47f0..2c472af484 100644 --- a/harbour/contrib/xhb/txtline.c +++ b/harbour/contrib/xhb/txtline.c @@ -62,7 +62,7 @@ void hb_readLine( const char * szText, ULONG ulTextLen, ULONG uiLineLen, USHORT ULONG ulPos, ulCurrCol, ulLastBlk; BOOL bBreak = 0; - HB_TRACE(HB_TR_DEBUG, ("hb_readLine(%p, %i, %i, %i, %i, %p, %p, %i, %i, %i, %i, %i)", szText, ulTextLen, uiLineLen, uiTabLen, bWrap, ** Term, * iTermSizes, uiTerms, *bFound, *bEOF, *lEnd, *ulEndOffset )); + HB_TRACE(HB_TR_DEBUG, ("hb_readLine(%p, %lu, %lu, %hu, %d, %p, %p, %hu, %p, %p, %p, %p)", szText, ulTextLen, uiLineLen, uiTabLen, bWrap, Term, iTermSizes, uiTerms, bFound, bEOF, lEnd, ulEndOffset )); *bFound = 0; *bEOF = 0; diff --git a/harbour/source/compiler/hbmain.c b/harbour/source/compiler/hbmain.c index d188a20055..e822b8c67d 100644 --- a/harbour/source/compiler/hbmain.c +++ b/harbour/source/compiler/hbmain.c @@ -3899,7 +3899,7 @@ static int hb_compCompile( HB_COMP_DECL, const char * szPrg, const char * szBuff PHB_MODULE pModule; BOOL fGenCode = TRUE; - HB_TRACE(HB_TR_DEBUG, ("hb_compCompile(%s,%d)", szPrg, iFileType)); + HB_TRACE(HB_TR_DEBUG, ("hb_compCompile(%s,%p)", szPrg, szBuffer)); /* Initialize support variables */ hb_compInitVars( HB_COMP_PARAM ); diff --git a/harbour/source/rtl/hbproces.c b/harbour/source/rtl/hbproces.c index 09d816e316..aa4cc67435 100644 --- a/harbour/source/rtl/hbproces.c +++ b/harbour/source/rtl/hbproces.c @@ -954,7 +954,7 @@ int hb_fsProcessRun( const char * pszFilename, char * pszFree; int iResult; - HB_TRACE(HB_TR_DEBUG, ("hb_fsProcessRun(%s, %p, %lu, %p, %p, %p, %p, %d)", pStdInBuf, ulStdInLen, pStdOutPtr, pulStdOut, pStdErrPtr, pulStdErr, fDetach)); + HB_TRACE(HB_TR_DEBUG, ("hb_fsProcessRun(%s, %p, %lu, %p, %p, %p, %p, %d)", pStdInBuf, pStdInBuf, ulStdInLen, pStdOutPtr, pulStdOut, pStdErrPtr, pulStdErr, fDetach)); pszFilename = hb_osEncode( pszFilename, &pszFree );