diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f6527c1448..f237c7d684 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2011-05-25 15:14 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/contrib/hbwin/win_prn2.c + ! fixed typo in variable name in my previous modification + 2011-05-24 14:13 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/gtwvg/wvgcore.c ! Fixed: wrongly handelled WM_CLOSE message in modal/modeless diff --git a/harbour/contrib/hbwin/win_prn2.c b/harbour/contrib/hbwin/win_prn2.c index 633c8ccf5b..3015dbb513 100644 --- a/harbour/contrib/hbwin/win_prn2.c +++ b/harbour/contrib/hbwin/win_prn2.c @@ -429,7 +429,7 @@ HB_FUNC( WIN_PRINTFILERAW ) iResult = -7; break; } - else if( nWritten == 0 ) + else if( dwWritten == 0 ) { iResult = -8; break;