Correctly capped minqtarget to maxq
This line of code incorrectly set maxq = maxq rather than capping minqtarget. Change-Id: Ifbc86df8b0ff2779e7b2a5f7349724d04a18bd62
This commit is contained in:
@@ -187,7 +187,7 @@ int calculate_minq_index( double maxq,
|
|||||||
c );
|
c );
|
||||||
|
|
||||||
if ( minqtarget > maxq )
|
if ( minqtarget > maxq )
|
||||||
maxq = maxq;
|
minqtarget = maxq;
|
||||||
|
|
||||||
for ( i = 0; i < QINDEX_RANGE; i++ )
|
for ( i = 0; i < QINDEX_RANGE; i++ )
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user