]> git.ipfire.org Git - thirdparty/opentracker.git/commitdiff
Formatting
authorerdgeist <>
Wed, 21 Nov 2007 01:56:14 +0000 (01:56 +0000)
committererdgeist <>
Wed, 21 Nov 2007 01:56:14 +0000 (01:56 +0000)
ot_clean.h
ot_vector.h

index 747b13aeb2abcbec3996c226e9c4d62843c951ef..73dcd10f60e8e2168de282e3e6ea3cc73403eee2 100644 (file)
@@ -10,6 +10,6 @@ void clean_init( void );
 void clean_deinit( void );
 
 void clean_all_torrents( void );
-int clean_single_torrent( ot_torrent *torrent );
+int  clean_single_torrent( ot_torrent *torrent );
 
 #endif
index 6b7fdf489c22f3f710f6e0fb1c2b15308e55e18a..0f684887267e771ac200798b16ab1c83f2703014 100644 (file)
@@ -22,7 +22,7 @@ void *binary_search( const void * const key, const void * base, const size_t mem
                      size_t compare_size, int *exactmatch );
 void *vector_find_or_insert( ot_vector *vector, void *key, size_t member_size, size_t compare_size, int *exactmatch );
 
-int vector_remove_peer( ot_vector *vector, ot_peer *peer, int hysteresis );
-void vector_remove_torrent( ot_vector *vector, ot_torrent *match );
+int   vector_remove_peer( ot_vector *vector, ot_peer *peer, int hysteresis );
+void  vector_remove_torrent( ot_vector *vector, ot_torrent *match );
 
 #endif