remove logging

This commit is contained in:
ehouse 2005-01-09 21:54:20 +00:00
parent 834d1a9266
commit 02fd546de0

View file

@ -38,11 +38,9 @@ symReplaceStrIfDiff( MPFORMAL XP_UCHAR** loc, const TDesC16& desc )
forCmp.Set( *loc, XP_STRLEN( *loc ) );
if ( tmp == forCmp ) {
XP_LOGF( "not copying %s", *loc );
return;
}
XP_LOGF( "freeing %s", *loc );
XP_FREE( mpool, *loc );
}
@ -51,8 +49,6 @@ symReplaceStrIfDiff( MPFORMAL XP_UCHAR** loc, const TDesC16& desc )
XP_MEMCPY( newStr, (void*)tmp.Ptr(), len );
newStr[len] = '\0';
*loc = newStr;
XP_LOGF( "created new string: %s", newStr );
} /* symReplaceStr */
extern "C" {