diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f31f252416..04b8157f7d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ +2007-10-23 21:01 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/contrib/libnf/fttext.c + ! added missing type declaration in _ins_buff() and _del_buff() + 2007-10-23 20:27 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + harbour/doc/howtobld.txt + added hb* scripts description diff --git a/harbour/contrib/libnf/fttext.c b/harbour/contrib/libnf/fttext.c index 49c57b01f6..d6296977a8 100644 --- a/harbour/contrib/libnf/fttext.c +++ b/harbour/contrib/libnf/fttext.c @@ -1809,7 +1809,7 @@ _fbolerr: /* inserts xxx bytes into the current file, beginning at the current record */ /* the contents of the inserted bytes are indeterminate, i.e. you'll have to write to them before they mean anything */ -static _ins_buff( int iLen ) +static int _ins_buff( int iLen ) { char * ReadBuff = ( char * ) hb_xgrab( BUFFSIZE ); @@ -1904,7 +1904,7 @@ static _ins_buff( int iLen ) /*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/ /* deletes xxx bytes from the current file, beginning at the current record */ -static _del_buff( int iLen ) +static int _del_buff( int iLen ) { char * WriteBuff = ( char * ) hb_xgrab( BUFFSIZE );