main.cpp: silence warnings

This commit is contained in:
zvon 2020-04-12 21:11:14 +02:00
parent 3847c428df
commit 0ca5e21eb2

View File

@ -258,17 +258,17 @@ int main
_setmode( _fileno( stdout ), _O_U16TEXT );
#else
if ( setlocale( LC_ALL, "" ) == NULL )
error( 1, errno, _( INVALID_LOCALE ).c_str() );
error( 1, errno, "%s", _( INVALID_LOCALE ).c_str() );
if ( FSLib::exists( "/usr/share/locale/en_US/LC_MESSAGES/tv_rename.mo" ) ) {
if ( bindtextdomain( DOMAIN, "/usr/share/locale" ) == NULL )
error( 1, errno, _( MEM_ALLOC_FAILED ).c_str() );
error( 1, errno, "%s", _( MEM_ALLOC_FAILED ).c_str() );
if ( textdomain( DOMAIN ) == NULL )
error( 1, errno, _( MEM_ALLOC_FAILED ).c_str() );
error( 1, errno, "%s", _( MEM_ALLOC_FAILED ).c_str() );
} else {
if ( bindtextdomain( DOMAIN, "./locale" ) == NULL )
error( 1, errno, _( MEM_ALLOC_FAILED ).c_str() );
error( 1, errno, "%s", _( MEM_ALLOC_FAILED ).c_str() );
if ( textdomain( DOMAIN ) == NULL )
error( 1, errno, _( MEM_ALLOC_FAILED ).c_str() );
error( 1, errno, "%s", _( MEM_ALLOC_FAILED ).c_str() );
}
#endif
string show{};