fix off by one error

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/performance/trunk@33283 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2011-06-12 07:42:22 +00:00
parent 3a3081e493
commit f102d109bd

View file

@ -377,8 +377,8 @@ stats(NSTimeInterval ti, uint32_t max, NSTimeInterval *bounds, uint64_t *bands)
[NSException raise: NSInvalidArgumentException
format: @"Bad boundaries"];
}
waitBoundaries[boundsCount] = l;
c = boundsCount;
waitBoundaries[--c] = l;
while (c-- > 0)
{
NSTimeInterval t;