From 7c50ab9b8ab48dfdd48717db86bbff6440083a61 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 21 May 2008 15:53:37 +0000 Subject: [PATCH] fix to prev (whitespace) --- harbour/source/compiler/genc.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/harbour/source/compiler/genc.c b/harbour/source/compiler/genc.c index ef647a63cb..046d27aed9 100644 --- a/harbour/source/compiler/genc.c +++ b/harbour/source/compiler/genc.c @@ -172,14 +172,14 @@ void hb_compGenCCode( HB_COMP_DECL, PHB_FNAME pFileName ) /* generates the { int iLen = strlen( szModulname ), i; - for ( i = 0; i < iLen; i++ ) + for( i = 0; i < iLen; i++ ) { char c = szModulname[ i ]; - if ( ! ( c >= 'A' && c <= 'Z' ) && - ! ( c >= 'a' && c <= 'z' ) && - ! ( c >= '0' && c <= '9' ) && - ! ( c == '_' ) ) + if( ! ( c >= 'A' && c <= 'Z' ) && + ! ( c >= 'a' && c <= 'z' ) && + ! ( c >= '0' && c <= '9' ) && + ! ( c == '_' ) ) { szModulname[ i ] = '_'; }