2009-11-10 13:02 UTC+0200 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt)

* harbour/src/rtl/cdpapi.c
    * removed unnecessary assignment to pacify BCC warning
This commit is contained in:
Mindaugas Kavaliauskas
2009-11-10 11:01:54 +00:00
parent afe718b590
commit e607a388df
2 changed files with 6 additions and 2 deletions

View File

@@ -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

View File

@@ -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;