mirror of
https://github.com/gnustep/libs-performance.git
synced 2025-02-23 20:01:15 +00:00
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:
parent
3a3081e493
commit
f102d109bd
1 changed files with 1 additions and 1 deletions
2
GSFIFO.m
2
GSFIFO.m
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue