From f5bea47692a32542972a933109c5e35e64da9aed Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 15 May 2000 20:43:42 +0000 Subject: [PATCH] 20000515-22:47 GMT+1 Victor Szakats --- harbour/ChangeLog | 8 +++++++- harbour/source/compiler/hbfix.c | 3 +++ harbour/source/compiler/hbusage.c | 2 -- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 2b3d93075d..afa0ce7bf4 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,9 @@ +20000515-22:47 GMT+1 Victor Szakats + * source/compiler/hbusage.c + ! Removed conditional OBJ generation branch. + * source/compiler/hbfix.c + ! Unused variable warnings fixed. + 20000515-10:15 GMT-8 Ron Pinkas * source/compiler/harbour.l @@ -399,7 +405,7 @@ The follow is mission from previus session * source/compiler/harbour.c ! hb_compGenPushDouble() buffer overflow bug fixed. - Thanks for Istvan Foldi. + Thanks to Istvan Foldi. 20000505-19:26 GMT+1 Antonio Linares * source/compiler/genobj32.c diff --git a/harbour/source/compiler/hbfix.c b/harbour/source/compiler/hbfix.c index c200e1d63e..210e962a10 100644 --- a/harbour/source/compiler/hbfix.c +++ b/harbour/source/compiler/hbfix.c @@ -95,6 +95,9 @@ static HB_FIX_FUNC( hb_p_pushblock ) static HB_FIX_FUNC( hb_p_pushblockshort ) { + HB_SYMBOL_UNUSED( pFunc ); + HB_SYMBOL_UNUSED( lPCodePos ); + ++cargo->iNestedCodeblock; return 2; diff --git a/harbour/source/compiler/hbusage.c b/harbour/source/compiler/hbusage.c index 39b066d5cc..32cbe65217 100644 --- a/harbour/source/compiler/hbusage.c +++ b/harbour/source/compiler/hbusage.c @@ -49,9 +49,7 @@ void hb_compPrintUsage( char * szSelf ) "\n %cg output type generated is (see below)", "\n %cgc[] output type: C source (.c) (default)", "\n : 0=compact, 1=normal, 2=verbose (default)", -#ifdef HARBOUR_OBJ_GENERATION "\n %cgo output type: Windows/DOS OBJ32 (.obj)", -#endif "\n %cgh output type: Harbour Portable Object (.hrb)", "\n %cgj output type: Java source (.java)", "\n %ci add #include file search path",