diff options
Diffstat (limited to 'Bus')
-rw-r--r-- | Bus/Ivy/IvyApplication.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Bus/Ivy/IvyApplication.cxx b/Bus/Ivy/IvyApplication.cxx index b0fa052..c9ba0e4 100644 --- a/Bus/Ivy/IvyApplication.cxx +++ b/Bus/Ivy/IvyApplication.cxx @@ -162,12 +162,12 @@ void IvyApplication::OnReceive(char * line) exp = pcre_compile( arg, PCRE_CASELESS, &errmsg, &erroffset, NULL );
if ( !exp )
{
- ivy::string err( "Error can't compile regexp '" );
- err += arg;
- err += "' error ";
- err += errmsg;
- SendMsg( Error, Error, err.c_str() );
- TRACE("IvyApplication %s\n",err.c_str());
+ ivy::string errstr( "Error can't compile regexp '" );
+ errstr += arg;
+ errstr += "' error ";
+ errstr += errmsg;
+ SendMsg( Error, Error, errstr.c_str() );
+ TRACE("IvyApplication %s\n",errstr.c_str());
return;
}
#else
|