diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d64db842e9..bc69ce7b35 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,12 @@ The license applies to all entries newer than 2009-04-28. */ +2010-07-07 17:25 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * include/hbcomp.h + ! Renamed back one variable in header which caused an + avalanch of problems in .c code. + I'll redo this later. + 2010-07-07 17:13 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * INSTALL * contrib/make.hbs diff --git a/harbour/include/hbcomp.h b/harbour/include/hbcomp.h index dcbecd7d30..5d186a5553 100644 --- a/harbour/include/hbcomp.h +++ b/harbour/include/hbcomp.h @@ -71,7 +71,7 @@ HB_EXTERN_BEGIN /* definitions for hb_compPCodeEval() support */ typedef void * HB_VOID_PTR; -#define HB_PCODE_FUNC( func, type ) HB_SIZE func( PFUNCTION pFunc, HB_SIZE nPCodePos, type cargo ) +#define HB_PCODE_FUNC( func, type ) HB_SIZE func( PFUNCTION pFunc, HB_SIZE lPCodePos, type cargo ) typedef HB_PCODE_FUNC( HB_PCODE_FUNC_, HB_VOID_PTR ); typedef HB_PCODE_FUNC_ * HB_PCODE_FUNC_PTR;