1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +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:
Jordan Lee 2011-03-22 23:49:29 +00:00
parent 48212fa0b9
commit 949241a490
2 changed files with 2 additions and 2 deletions

View file

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

View file

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