From 0ce01f5a884d5acaec36e99104ff284327f80a48 Mon Sep 17 00:00:00 2001 From: Luiz Rafael Culik Date: Fri, 11 Jan 2002 10:23:48 +0000 Subject: [PATCH] Changelog 2002-01-11 08:10 UTC -0300 --- harbour/ChangeLog | 7 ++++++- harbour/source/rdd/dbf1.c | 5 +++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7c61a18ee9..c3abea1d40 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -7,7 +7,12 @@ For example: 2002-12-01 23:12 UTC+0100 Foo Bar */ -2002-10-01 22:10 GMT-3 Luiz Rafael Culik + * Added missed Attribute check (thanks Victor) + +2002-01-14 14:30 UTC-0500 Paul Tucker + * source\rtl\direct.c + * updated notes and TODO's + 2002-01-14 10:40 UTC-0500 Paul Tucker * source\common\hbffind.c * source\rtl\direct.c diff --git a/harbour/source/rdd/dbf1.c b/harbour/source/rdd/dbf1.c index 22ac2b2945..c0d7b833d6 100644 --- a/harbour/source/rdd/dbf1.c +++ b/harbour/source/rdd/dbf1.c @@ -1234,9 +1234,14 @@ ERRCODE hb_dbfPutValue( DBFAREAP pArea, USHORT uiIndex, PHB_ITEM pItem ) ( LONG ) hb_numRound( hb_itemGetND( pItem ), 0 ) ); } else + /* uiSize = sprintf( szBuffer, "%*.*f", pField->uiLen - pField->uiDec - 1, pField->uiDec, hb_numRound( hb_itemGetND( pItem ), pField->uiDec ) ); + */ + uiSize = sprintf( szBuffer, "%*.*f", pField->uiLen, pField->uiDec, + hb_numRound( hb_itemGetND( pItem ), + pField->uiDec ) ); } else {