1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-27 10:07:40 +00:00

(trunk libT) fix variable name oops

This commit is contained in:
Charles Kerr 2009-11-26 16:53:45 +00:00
parent 178edb73eb
commit 931afc7d2a
2 changed files with 3 additions and 3 deletions

View file

@ -485,10 +485,10 @@ tr_timevalSet( struct timeval * setme, int seconds, int microseconds )
} }
void void
tr_timerAdd( struct event * timer, int seconds, int milliseconds ) tr_timerAdd( struct event * timer, int seconds, int microseconds )
{ {
struct timeval tv; struct timeval tv;
tr_timevalSet( &tv, seconds, milliseconds ); tr_timevalSet( &tv, seconds, microseconds );
event_add( timer, &tv ); event_add( timer, &tv );
} }

View file

@ -254,7 +254,7 @@ void tr_timevalSet( struct timeval * setme, int seconds, int microseconds );
struct event; struct event;
void tr_timerAdd( struct event * timer, int seconds, int milliseconds ); void tr_timerAdd( struct event * timer, int seconds, int microseconds );
/** @brief return the current date in milliseconds */ /** @brief return the current date in milliseconds */