mirror of
https://github.com/transmission/transmission
synced 2024-12-26 17:47:37 +00:00
(trunk libT) fix variable name oops
This commit is contained in:
parent
178edb73eb
commit
931afc7d2a
2 changed files with 3 additions and 3 deletions
|
@ -485,10 +485,10 @@ tr_timevalSet( struct timeval * setme, int seconds, int microseconds )
|
|||
}
|
||||
|
||||
void
|
||||
tr_timerAdd( struct event * timer, int seconds, int milliseconds )
|
||||
tr_timerAdd( struct event * timer, int seconds, int microseconds )
|
||||
{
|
||||
struct timeval tv;
|
||||
tr_timevalSet( &tv, seconds, milliseconds );
|
||||
tr_timevalSet( &tv, seconds, microseconds );
|
||||
event_add( timer, &tv );
|
||||
}
|
||||
|
||||
|
|
|
@ -254,7 +254,7 @@ void tr_timevalSet( struct timeval * setme, int seconds, int microseconds );
|
|||
|
||||
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 */
|
||||
|
|
Loading…
Reference in a new issue