diff options
-rw-r--r-- | Ivy/IvyApplication.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ivy/IvyApplication.cxx b/Ivy/IvyApplication.cxx index cd0e70c..d949845 100644 --- a/Ivy/IvyApplication.cxx +++ b/Ivy/IvyApplication.cxx @@ -115,7 +115,7 @@ void IvyApplication::OnReceive(char * line) if ( !bus->CheckRegexp( arg ) )
{
#ifdef DEBUG
- TRACE("Warning exp='%s' can't match removing from %s\n",arg,appname);
+ TRACE("Warning exp='%s' can't match removing from %s\n",arg,appname.c_str());
#endif //DEBUG
return;
}
@@ -154,7 +154,7 @@ void IvyApplication::OnReceive(char * line) remoteService = id;
if ( bus->CheckConnected( this ) )
{
- TRACE("Quitting already connected %s\n", appname);
+ TRACE("Quitting already connected %s\n", appname.c_str());
SendMsg( Error, Error, "already connected" );
// bus->RemoveApplication( this );
Close();
|