From b08bdcdd3c55965269302f3576debf42e4b64dd6 Mon Sep 17 00:00:00 2001 From: Antonio Linares Date: Mon, 10 Dec 2001 10:56:12 +0000 Subject: [PATCH] type cast required --- harbour/source/common/hbgete.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harbour/source/common/hbgete.c b/harbour/source/common/hbgete.c index f1b1c1cc67..8221bb1f56 100644 --- a/harbour/source/common/hbgete.c +++ b/harbour/source/common/hbgete.c @@ -60,7 +60,7 @@ char * hb_getenv( const char * name ) { - char * pszBuffer = hb_xgrab( 255 ); + char * pszBuffer = ( char * ) hb_xgrab( 255 ); #ifdef HB_OS_WIN_32 DWORD nSize;