Skip to content

Commit

Permalink
Fixed maximum supported compression level.
Browse files Browse the repository at this point in the history
  • Loading branch information
schmelter-sap committed Jan 25, 2021
1 parent 88b00e0 commit 86478e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hotspot/share/runtime/globals.hpp
Expand Up @@ -557,8 +557,8 @@ const intx ObjectAlignmentInBytes = 8;
product(intx, HeapDumpGzipLevel, 0, MANAGEABLE, \
"When HeapDumpOnOutOfMemoryError is on, the gzip compression " \
"level of the dump file. 0 (the default) disables gzip " \
"compression. Otherwise the level must be between 1 and 10.") \
range(0, 10) \
"compression. Otherwise the level must be between 1 and 9.") \
range(0, 9) \
\
product(ccstr, NativeMemoryTracking, "off", \
"Native memory tracking options") \
Expand Down

0 comments on commit 86478e2

Please sign in to comment.