From 6a8a2364434763a033781f6b2a605ace9a021013 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Mon, 13 May 2013 16:49:57 +0300 Subject: Fix a typo in decompress_unxz.c. This is an old fix from 2011 that I just found from the Linux source tree. The fix was made by Lucas De Marchi. --- linux/lib/decompress_unxz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/lib/decompress_unxz.c b/linux/lib/decompress_unxz.c index cecd23d..9f34eb5 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 -- cgit v1.2.3