mirror of
https://github.com/transmission/transmission
synced 2025-03-03 18:25:35 +00:00
(trunk libT) #4138 "use stdbool.h instead of tr_bool" -- fix watch.c error reported by zebulon501 in trac. :)
This commit is contained in:
parent
11c4194da8
commit
616bde8c5b
1 changed files with 2 additions and 2 deletions
|
@ -181,10 +181,10 @@ add_file_to_list( struct evbuffer * buf, const char * filename, size_t len )
|
|||
evbuffer_add( buf, key, strlen( key ) );
|
||||
tr_free( key );
|
||||
}
|
||||
static tr_bool
|
||||
static bool
|
||||
is_file_in_list( struct evbuffer * buf, const char * filename, size_t len )
|
||||
{
|
||||
tr_bool in_list;
|
||||
bool in_list;
|
||||
struct evbuffer_ptr ptr;
|
||||
char * key = get_key_from_file( filename, len );
|
||||
|
||||
|
|
Loading…
Reference in a new issue