(trunk) #3875 "Typo: missing gettext macro _ in recent commit" -- fix r11602 regression discovered by ijuxda

This commit is contained in:
Jordan Lee 2011-01-06 01:05:13 +00:00
parent 6dc03f471e
commit d18b1bda05
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ cached_file_open( struct tr_cached_file * o,
if( o->fd == -1 )
{
const int err = errno;
tr_err( ( "Couldn't open \"%1$s\": %2$s" ), filename, tr_strerror( err ) );
tr_err( _( "Couldn't open \"%1$s\": %2$s" ), filename, tr_strerror( err ) );
return err;
}