mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
b111b35ebf
- use distribution patch - extend pkg-message - protect config file - cleanup staged install - make portlint happier
14 lines
464 B
C++
14 lines
464 B
C++
--- spunk/textstrm.cc.orig 1996-11-07 17:06:52 UTC
|
|
+++ spunk/textstrm.cc
|
|
@@ -66,8 +66,8 @@ void TextFileStream::MakeLineIndex (int
|
|
// LineLen is the estimated length of a line in the file used for
|
|
// estimating the size of the buffer.
|
|
{
|
|
- static const Delta = 100;
|
|
- static const BufSize = 4096;
|
|
+ static const int Delta = 100;
|
|
+ static const int BufSize = 4096;
|
|
|
|
// Estimate the count of lines
|
|
if ((Limit = Size / LineLen) < 100) {
|