(trunk libT) #4138 "use stdbool.h instead of tr_bool" -- fix watch.c error reported by zebulon501 in trac. :)

This commit is contained in:
Jordan Lee 2011-04-02 07:46:37 +00:00
parent 11c4194da8
commit 616bde8c5b
1 changed files with 2 additions and 2 deletions

View File

@ -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 );