mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 23:34:06 +00:00
Fixed compilation failure
This commit is contained in:
parent
0422cc52f0
commit
8607af8d90
|
@ -314,12 +314,12 @@ void BtreeWordSearchRequest::run()
|
||||||
catch( std::exception & e )
|
catch( std::exception & e )
|
||||||
{
|
{
|
||||||
FDPRINTF( stderr, "Index searching failed: %s, error: %s\n",
|
FDPRINTF( stderr, "Index searching failed: %s, error: %s\n",
|
||||||
dict.getName()->c_str(), e.what() );
|
dict.getName().c_str(), e.what() );
|
||||||
}
|
}
|
||||||
catch(...)
|
catch(...)
|
||||||
{
|
{
|
||||||
FDPRINTF( stderr, "Index searching failed: %s\n",
|
FDPRINTF( stderr, "Index searching failed: %s\n",
|
||||||
dict.getName()->c_str() );
|
dict.getName().c_str() );
|
||||||
}
|
}
|
||||||
|
|
||||||
finish();
|
finish();
|
||||||
|
|
Loading…
Reference in a new issue