Changeset 2865 for trunk/libtransmission/platform.c
- Timestamp:
- Aug 19, 2007, 2:10:18 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/platform.c
r2614 r2865 414 414 /* add it to the list of events waiting to be signaled */ 415 415 tr_lockLock( c->lock ); 416 c->events = tr_list_append(c->events, hEvent );416 tr_list_append( &c->events, hEvent ); 417 417 tr_lockUnlock( c->lock ); 418 418 … … 424 424 /* remove it from the list of events waiting to be signaled */ 425 425 tr_lockLock( c->lock ); 426 c->events = tr_list_remove_data(c->events, hEvent );426 tr_list_remove_data( &c->events, hEvent ); 427 427 tr_lockUnlock( c->lock ); 428 428 … … 511 511 delete_sem( c->sem ); 512 512 #elif defined(WIN32) 513 tr_list_free( c->events );513 tr_list_free( &c->events ); 514 514 tr_lockFree( c->lock ); 515 515 #else
Note: See TracChangeset
for help on using the changeset viewer.