summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ot_clean.h2
-rw-r--r--ot_vector.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/ot_clean.h b/ot_clean.h
index 747b13a..73dcd10 100644
--- a/ot_clean.h
+++ b/ot_clean.h
@@ -10,6 +10,6 @@ void clean_init( void );
10void clean_deinit( void ); 10void clean_deinit( void );
11 11
12void clean_all_torrents( void ); 12void clean_all_torrents( void );
13int clean_single_torrent( ot_torrent *torrent ); 13int clean_single_torrent( ot_torrent *torrent );
14 14
15#endif 15#endif
diff --git a/ot_vector.h b/ot_vector.h
index 6b7fdf4..0f68488 100644
--- a/ot_vector.h
+++ b/ot_vector.h
@@ -22,7 +22,7 @@ void *binary_search( const void * const key, const void * base, const size_t mem
22 size_t compare_size, int *exactmatch ); 22 size_t compare_size, int *exactmatch );
23void *vector_find_or_insert( ot_vector *vector, void *key, size_t member_size, size_t compare_size, int *exactmatch ); 23void *vector_find_or_insert( ot_vector *vector, void *key, size_t member_size, size_t compare_size, int *exactmatch );
24 24
25int vector_remove_peer( ot_vector *vector, ot_peer *peer, int hysteresis ); 25int vector_remove_peer( ot_vector *vector, ot_peer *peer, int hysteresis );
26void vector_remove_torrent( ot_vector *vector, ot_torrent *match ); 26void vector_remove_torrent( ot_vector *vector, ot_torrent *match );
27 27
28#endif 28#endif