2002-01-16 00:14 UTC+0100 Maurilio Longo <maurilio.longo@libero.it>

* common/hbgete.c
    ! fixed warning on DosScanEnv() call
This commit is contained in:
Maurilio Longo
2002-01-16 23:15:29 +00:00
parent aea0161378
commit 22ade6b2f0
2 changed files with 7 additions and 3 deletions

View File

@@ -7,6 +7,10 @@
For example:
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
* source/rdd/dbfntx/dbfntx1.c
* WHILE, etc, conditions support implemented (DBFNTX )
2002-01-17 14:15 UTC-0500 David G. Holm <dholm@jsd-llc.com>
* contrib/Makefile
+ Added platform checks to determine which libraries to build.

View File

@@ -60,9 +60,9 @@
#include "hbapi.h"
/* NOTE: Warning, this function _may_ return NULL as a result if
/* NOTE: Warning, this function _may_ return NULL as a result if
the environment variable reading fails form some reason.
If the return value is not NULL, the caller must free
If the return value is not NULL, the caller must free
the pointer. [vszakats] */
char * hb_getenv( const char * szName )
@@ -84,7 +84,7 @@ char * hb_getenv( const char * szName )
#elif defined(HB_OS_OS2)
{
PCSZ EnvValue = "";
PSZ EnvValue = "";
if( DosScanEnv( szName, &EnvValue ) == NO_ERROR )
{