mirror of
https://github.com/transmission/transmission
synced 2024-12-25 09:13:06 +00:00
(trunk libT) tr_set_func is only used in one place, so make it a private function there instead of leaving it public in utils.h
This commit is contained in:
parent
48212fa0b9
commit
949241a490
2 changed files with 2 additions and 2 deletions
|
@ -2105,6 +2105,8 @@ pexElementCb( void * vpex, void * userData )
|
|||
diffs->elements[diffs->elementCount++] = *pex;
|
||||
}
|
||||
|
||||
typedef void ( tr_set_func )( void * element, void * userData );
|
||||
|
||||
/**
|
||||
* @brief find the differences and commonalities in two sorted sets
|
||||
* @param a the first set
|
||||
|
|
|
@ -402,8 +402,6 @@ char* tr_strsep( char ** str, const char * delim );
|
|||
****
|
||||
***/
|
||||
|
||||
typedef void ( tr_set_func )( void * element, void * userData );
|
||||
|
||||
int compareInt( const void * va, const void * vb );
|
||||
|
||||
void tr_sha1_to_hex( char * out, const uint8_t * sha1 ) TR_GNUC_NONNULL(1,2);
|
||||
|
|
Loading…
Reference in a new issue