diff options
author | fcolin | 2007-02-01 13:00:25 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:00:25 +0000 |
commit | 6b552eccfb74459a255b4f5907e8a3caab0a3259 (patch) | |
tree | 80dca16c9995586ffdb9328a59039a0bf078b5a4 /Bus/Ivy | |
parent | 9a3a3e20affe5c868b049d23a72d0893aa590753 (diff) | |
download | ivy-cplusplus-6b552eccfb74459a255b4f5907e8a3caab0a3259.zip ivy-cplusplus-6b552eccfb74459a255b4f5907e8a3caab0a3259.tar.gz ivy-cplusplus-6b552eccfb74459a255b4f5907e8a3caab0a3259.tar.bz2 ivy-cplusplus-6b552eccfb74459a255b4f5907e8a3caab0a3259.tar.xz |
Utilisateur : Fcolin Date : 19/04/06 Heure : 15:07 Archivé dans $/Bus/Ivy Commentaire: (vss 29)
Diffstat (limited to 'Bus/Ivy')
-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
|