1
0
mirror of https://github.com/m00natic/vlfi.git synced 2025-03-31 16:08:05 +01:00

fixed large-file-warning-threshold error

This commit is contained in:
Troy Hinckley 2018-02-01 15:33:46 -07:00 committed by GitHub
parent a01e9ed416
commit 512dc07586
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,9 @@ but don't change batch size. If t, measure and change."
(if ram-size (if ram-size
(/ ram-size 20) (/ ram-size 20)
0)) 0))
large-file-warning-threshold) (if large-file-warning-threshold
large-file-warning-threshold
0))
"Maximum batch size in bytes when auto tuning. "Maximum batch size in bytes when auto tuning.
Avoid increasing this after opening file with VLF." Avoid increasing this after opening file with VLF."
:group 'vlf :type 'integer) :group 'vlf :type 'integer)