diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a2b764c706..5b46ca1635 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-11-10 13:00 UTC+0200 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt) + * harbour/src/rtl/cdpapi.c + * removed unnecessary assignment to pacify BCC warning + 2009-11-10 11:54 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbset.h * harbour/src/vm/set.c diff --git a/harbour/src/rtl/cdpapi.c b/harbour/src/rtl/cdpapi.c index 4eacbb7241..ecf173fe63 100644 --- a/harbour/src/rtl/cdpapi.c +++ b/harbour/src/rtl/cdpapi.c @@ -1229,7 +1229,7 @@ ULONG hb_cdpU16AsStrLen( PHB_CODEPAGE cdp, BOOL fCtrl, ULONG ulMax ) { unsigned char * uniTrans; - HB_WCHAR wcMax, wc = 0; + HB_WCHAR wcMax, wc; ULONG ulS, ulD; int i; @@ -1269,7 +1269,7 @@ ULONG hb_cdpU16ToStr( PHB_CODEPAGE cdp, BOOL fCtrl, int iEndian, char * pDst, ULONG ulDst ) { unsigned char * uniTrans; - HB_WCHAR wcMax, wc = 0; + HB_WCHAR wcMax, wc; ULONG ulS, ulD; int i;