(trunk daemon) Small tweak to r13443 to fix a pluralization issue

This commit is contained in:
Jordan Lee 2012-08-18 21:53:09 +00:00
parent a845c3fc8a
commit c949f93308
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ tr_strltime( char * buf, int seconds, size_t buflen )
tr_snprintf( h, sizeof( h ), "%d %s", hours, hours==1?"hour":"hours" );
tr_snprintf( m, sizeof( m ), "%d %s", minutes, minutes==1?"minute":"minutes" );
tr_snprintf( s, sizeof( s ), "%d %s", seconds, seconds==1?"second":"seconds" );
tr_snprintf( t, sizeof( t ), "%d %s", total_seconds, total_seconds==1?"seconds":"seconds" );
tr_snprintf( t, sizeof( t ), "%d %s", total_seconds, total_seconds==1?"second":"seconds" );
if( days )
{