Module Name: src
Committed By: simonb
Date: Wed Oct 25 05:51:11 UTC 2023
Modified Files:
src/usr.bin/sort: fsort.h
Log Message:
Correct a comment - 8 * 1 million is 8 million, not 10 million (!).
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/usr.bin/sort/fsort.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/sort/fsort.h
diff -u src/usr.bin/sort/fsort.h:1.17 src/usr.bin/sort/fsort.h:1.18
--- src/usr.bin/sort/fsort.h:1.17 Sat Sep 26 21:16:55 2009
+++ src/usr.bin/sort/fsort.h Wed Oct 25 05:51:11 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: fsort.h,v 1.17 2009/09/26 21:16:55 dsl Exp $ */
+/* $NetBSD: fsort.h,v 1.18 2023/10/25 05:51:11 simonb Exp $ */
/*-
* Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
@@ -74,5 +74,5 @@
* Note that no more than MAXNUM records are stored in the buffer,
* even if the buffer is not full yet.
*/
-#define DEFBUFSIZE (1 << 20) /* 1MB */
-#define MAXBUFSIZE (8 << 20) /* 10 MB */
+#define DEFBUFSIZE (1 << 20) /* 1 MB */
+#define MAXBUFSIZE (8 << 20) /* 8 MB */