(trunk libT) fix minor compiler warning when compiling with assertions disabled

This commit is contained in:
Jordan Lee 2011-07-17 14:33:20 +00:00
parent b4960a3f29
commit dcd7bed20a
1 changed files with 2 additions and 2 deletions

View File

@ -202,8 +202,8 @@ tr_ptrArrayLowerBound( const tr_ptrArray * t,
}
static void
assertSortedAndUnique( const tr_ptrArray * t,
int compare(const void*, const void*) )
assertSortedAndUnique( const tr_ptrArray * t UNUSED,
int compare(const void*, const void*) UNUSED )
{
#if 1
int i;