Fixed compilation failure

This commit is contained in:
Tvangeste 2013-09-18 09:48:23 +02:00
parent 0422cc52f0
commit 8607af8d90

View file

@ -314,12 +314,12 @@ void BtreeWordSearchRequest::run()
catch( std::exception & e )
{
FDPRINTF( stderr, "Index searching failed: %s, error: %s\n",
dict.getName()->c_str(), e.what() );
dict.getName().c_str(), e.what() );
}
catch(...)
{
FDPRINTF( stderr, "Index searching failed: %s\n",
dict.getName()->c_str() );
dict.getName().c_str() );
}
finish();