Increase the maximum file size

This commit is contained in:
Nick Terrell
2018-05-24 14:21:12 -07:00
parent e712a3a0a3
commit 2a9975f77b
+1 -1
View File
@@ -16,7 +16,7 @@
#include <stdlib.h>
int main(int argc, char const **argv) {
size_t const kMaxFileSize = (size_t)1 << 20;
size_t const kMaxFileSize = (size_t)1 << 27;
int const kFollowLinks = 1;
char *fileNamesBuf = NULL;
char const **files = argv + 1;