diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ad6872d9c1..ffcca78c1f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2012-10-16 20:58 UTC+0200 Viktor Szakats (harbour syenar.net) + * contrib/hbzebra/codabar.c + ! minor correction to prev + 2012-10-16 20:34 UTC+0200 Viktor Szakats (harbour syenar.net) * contrib/hbnf/descendn.c + enabled FT_DESCEND() for all platforms diff --git a/harbour/contrib/hbzebra/codabar.c b/harbour/contrib/hbzebra/codabar.c index 0e433f43b6..29c1537258 100644 --- a/harbour/contrib/hbzebra/codabar.c +++ b/harbour/contrib/hbzebra/codabar.c @@ -159,7 +159,7 @@ PHB_ZEBRA hb_zebra_create_codabar( const char * szCode, HB_SIZE nLen, int iFlags for( i = 0; i < iLen; i++ ) { - HB_ISIZ no = _codabar_charno( szCode[ i ] ); + int no = _codabar_charno( szCode[ i ] ); _codabar_add( pZebra->pBits, s_code[ no ], iFlags, i > 0 && no >= 16 ); }