Skip to content

Commit

Permalink
longtail_platform: set MaxChunkSize to 16 MB
Browse files Browse the repository at this point in the history
  • Loading branch information
timsjostrand committed Sep 27, 2024
1 parent e15be63 commit de5ac8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/longtail_platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

static const uint32_t HostnamePrime = 0x01000193;
static const uint32_t HostnameSeed = 0x811C9DC5;
static const uint32_t MaxChunkSize = 4194304;
static const uint32_t MaxChunkSize = 16u * 1024u * 1024u;

static uint32_t HostnameFNV1A(const void* data, uint32_t numBytes)
{
Expand Down

0 comments on commit de5ac8e

Please sign in to comment.