Fix a current compiler warning

This commit is contained in:
nick
2013-09-23 17:15:56 +01:00
parent 22f92c5df0
commit bc50532321

View File

@@ -257,9 +257,9 @@ static inline void bitset_stream_dequeue(
return; return;
} }
static inline int bitset_stream_size( struct bitset * set ) static inline size_t bitset_stream_size( struct bitset * set )
{ {
int size; size_t size;
pthread_mutex_lock( &set->stream->mutex ); pthread_mutex_lock( &set->stream->mutex );
size = set->stream->size; size = set->stream->size;