See ChangeLog entry 2003-04-14 14:45 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2003-04-14 18:51:05 +00:00
parent ce383c94f6
commit ff78e1b3f0
2 changed files with 9 additions and 0 deletions

View File

@@ -7,6 +7,11 @@
For example:
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2003-04-14 14:45 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* source/common/hbgete.c
! Added #ifdef to allow OS/2 GCC to use PSZ and OS/2 VAC++ to use PCSZ for EnvValue.
2003-04-13 10:23 UTC+0200 Tomaz Zupan <tomaz.zupan@orpo.si>
* contrib/odbc/todbc.prg
! Better way to move to first record after fetching

View File

@@ -84,7 +84,11 @@ char * hb_getenv( const char * szName )
#elif defined(HB_OS_OS2)
{
#ifdef __GNUC__
PSZ EnvValue = "";
#else
PCSZ EnvValue = "";
#endif
if( DosScanEnv( szName, &EnvValue ) == NO_ERROR )
{