From e607a388dfa4b90d2d02f32d94e1988c05fa7782 Mon Sep 17 00:00:00 2001 From: Mindaugas Kavaliauskas Date: Tue, 10 Nov 2009 11:01:54 +0000 Subject: [PATCH] 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 --- harbour/ChangeLog | 4 ++++ harbour/src/rtl/cdpapi.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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;