2007-04-15 14:57 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/common/hbver.c
    ! fixed typo in buffer size passed to snprintf()
This commit is contained in:
Przemyslaw Czerpak
2007-04-15 12:57:27 +00:00
parent 2bb711b6c8
commit dfa8e92612
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-04-15 14:57 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/common/hbver.c
! fixed typo in buffer size passed to snprintf()
2007-04-15 14:35 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/source/compiler/hbmain.c
* harbour/source/vm/dbgentry.c

View File

@@ -537,7 +537,7 @@ char * hb_verPCode( void )
pszPCode = ( char * ) hb_xgrab( 24 );
snprintf( pszPCode, 32, "PCode version: %d.%d",
snprintf( pszPCode, 24, "PCode version: %d.%d",
HB_PCODE_VER >> 8, HB_PCODE_VER & 0xff );
return pszPCode;