summaryrefslogtreecommitdiff
path: root/misc/estic/files/patch-textstrm.cc
blob: 71d1464a4424795ae07e771bccdd6096a5aac558 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- spunk/textstrm.cc.orig	Sat Feb 26 18:05:06 2000
+++ spunk/textstrm.cc	Sat Feb 26 18:05:17 2000
@@ -66,8 +66,8 @@
 // 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) {