diff options
author | Xin LI <delphij@FreeBSD.org> | 2014-03-04 23:23:55 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2014-03-04 23:23:55 +0000 |
commit | 442b7425c6da3ee6e0a16d65b5458a795dcc47d1 (patch) | |
tree | 3349fe96bd5cf94db21a768ba361dc35fefbf7d6 /linux/lib/decompress_unxz.c | |
parent | 38f44a8c7c3367df45180852ee34d7d0a81b4ed7 (diff) |
Notes
Diffstat (limited to 'linux/lib/decompress_unxz.c')
-rw-r--r-- | linux/lib/decompress_unxz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/lib/decompress_unxz.c b/linux/lib/decompress_unxz.c index cecd23df2b9a..9f34eb56854d 100644 --- a/linux/lib/decompress_unxz.c +++ b/linux/lib/decompress_unxz.c @@ -83,7 +83,7 @@ * safety_margin = 128 + uncompressed_size * 8 / 32768 + 65536 * = 128 + (uncompressed_size >> 12) + 65536 * - * For comparision, according to arch/x86/boot/compressed/misc.c, the + * For comparison, according to arch/x86/boot/compressed/misc.c, the * equivalent formula for Deflate is this: * * safety_margin = 18 + (uncompressed_size >> 12) + 32768 |