2008-11-02 07:39 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* source/rtl/version.c
    ! Added missing header from previous change.

  * source/vm/itemapi.c
    ! snprintf() -> hb_snprintf()
      This got incidentally reverted in previous commit by mistake.
This commit is contained in:
Viktor Szakats
2008-11-02 06:43:45 +00:00
parent dddbc1c824
commit 659c0030be
3 changed files with 10 additions and 1 deletions

View File

@@ -8,6 +8,14 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-11-02 07:39 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/rtl/version.c
! Added missing header from previous change.
* source/vm/itemapi.c
! snprintf() -> hb_snprintf()
This got incidentally reverted in previous commit by mistake.
2008-11-02 07:33 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* include/hbstdgen.ch
- Removed HB_VERSION mistakenly left there.

View File

@@ -62,6 +62,7 @@
*/
#include "hbapi.h"
#include "hbvm.h"
#include "hbver.ch"

View File

@@ -2495,7 +2495,7 @@ HB_EXPORT char * hb_itemString( PHB_ITEM pItem, ULONG * ulLen, BOOL * bFreeReq )
buffer = ( char * ) hb_xgrab( size );
do
{
n = snprintf( buffer, size, "%p", hb_itemGetPtr( pItem ) );
n = hb_snprintf( buffer, size, "%p", hb_itemGetPtr( pItem ) );
if( (n > -1) && (n < size) )
{
bFail = FALSE;