COMP: Remove useless variable assignment

This removes an assignment whose result is never used, thus quieting a
warning from Borland.
This commit is contained in:
Brad King 2009-06-22 14:19:17 -04:00
parent 34744b6bc0
commit d445275ed0
1 changed files with 0 additions and 1 deletions

View File

@ -3963,7 +3963,6 @@ bool SystemTools::GetLineFromStream(kwsys_ios::istream& is,
// Append the data read to the line.
line.append(buffer);
sizeLimit = sizeLimit - static_cast<long>(length);
}
// Return the results.