Increase the maximum file size

dev
Nick Terrell 2018-05-23 18:22:32 -07:00
parent e712a3a0a3
commit 2a9975f77b
1 changed files with 1 additions and 1 deletions

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;