Skip to content

Commit

Permalink
s2c: Default to max block size (4MB)
Browse files Browse the repository at this point in the history
  • Loading branch information
klauspost committed Nov 11, 2019
1 parent bc6fcd8 commit 754afe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s2/cmd/s2c/main.go
Expand Up @@ -22,7 +22,7 @@ import (
var (
faster = flag.Bool("faster", false, "Compress faster, but with a minor compression loss")
cpu = flag.Int("cpu", runtime.GOMAXPROCS(0), "Compress using this amount of threads")
blockSize = flag.String("blocksize", "1M", "Max block size. Examples: 64K, 256K, 1M, 4M. Must be power of two and <= 4MB")
blockSize = flag.String("blocksize", "4M", "Max block size. Examples: 64K, 256K, 1M, 4M. Must be power of two and <= 4MB")
safe = flag.Bool("safe", false, "Do not overwrite output files")
padding = flag.String("pad", "1", "Pad size to a multiple of this value, Examples: 500, 64K, 256K, 1M, 4M, etc")
stdout = flag.Bool("c", false, "Write all output to stdout. Multiple input files will be concatenated")
Expand Down

0 comments on commit 754afe9

Please sign in to comment.