1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/misc/estic/files/patch-ar
Steve Price 059a88c435 Consolidate diffs to a single file into one patch and add a boatload
of patches to fix the build on -current.
2000-02-27 15:04:16 +00:00

14 lines
449 B
Plaintext

--- 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) {