Fixed typo in buffer size calculation.
This commit is contained in:
parent
5ae0cb42a9
commit
4397b410d4
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ namespace Mist {
|
|||
if (it->second.firstms < firstms) {
|
||||
firstms = it->second.firstms;
|
||||
}
|
||||
if (it->second.firstms > lastms) {
|
||||
if (it->second.lastms > lastms){
|
||||
lastms = it->second.lastms;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue