Skip to content
This repository has been archived by the owner on Nov 25, 2019. It is now read-only.

Commit

Permalink
Use safer default volume size limit
Browse files Browse the repository at this point in the history
  • Loading branch information
itkach committed Oct 10, 2015
1 parent 831482e commit e5c0981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aardtools/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ def make_argparser():

parser.add_argument(
'-s', '--max-file-size',
default=str(2**31-1),
default=str(2*10**9),
help=
'Maximum file size in bytes, kilobytes(K), megabytes(M) or gigabytes(G). '
'Default: %(default)s bytes'
Expand Down

0 comments on commit e5c0981

Please sign in to comment.