mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +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 )
|
||||
{
|
||||
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();
|
||||
|
|
Loading…
Reference in a new issue