diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 76007c0ea7..531741363a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,11 @@ The license applies to all entries newer than 2009-04-28. */ +2012-07-16 23:31 UTC+0200 Viktor Szakats (harbour syenar.net) + * src/vm/extrap.c + ! old IA64 compilation typo. + Thanks to Raphael for report and patch. + 2012-07-16 16:20 UTC+0200 Viktor Szakats (harbour syenar.net) * contrib/hbide/projectpropertiesex.ui ! HBMK2 -> hbmk2 to be consistent with everywhere else diff --git a/harbour/src/vm/extrap.c b/harbour/src/vm/extrap.c index 4bf3ceb509..f191dc9233 100644 --- a/harbour/src/vm/extrap.c +++ b/harbour/src/vm/extrap.c @@ -166,7 +166,7 @@ static LONG WINAPI hb_winExceptionHandler( struct _EXCEPTION_POINTERS * pExcepti pCtx->IntT8 , pCtx->IntT9 , pCtx->IntT10, pCtx->IntT11, pCtx->IntT12, pCtx->IntT13, pCtx->IntT14, pCtx->IntT15, pCtx->IntT16, pCtx->IntT17, pCtx->IntT18, pCtx->IntT19, - pCtx->IntT20, pCtx->IntT21, pCtx->IntT22 + pCtx->IntT20, pCtx->IntT21, pCtx->IntT22, pCtx->IntGp , pCtx->IntV0 , pCtx->IntSp , pCtx->IntTeb, pCtx->IntNats ); }