Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(824)

Unified Diff: src/liblzma/lzma/lzma2_encoder.c

Issue 7109015: Update XZ Utils to 5.0.3 (in deps) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/xz/
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/liblzma/lzma/lzma2_decoder.c ('k') | src/liblzma/lzma/lzma_decoder.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/liblzma/lzma/lzma2_encoder.c
===================================================================
--- src/liblzma/lzma/lzma2_encoder.c (revision 50504)
+++ src/liblzma/lzma/lzma2_encoder.c (working copy)
@@ -374,7 +374,7 @@
const lzma_options_lzma *const opt = options;
uint32_t d = my_max(opt->dict_size, LZMA_DICT_SIZE_MIN);
- // Round up to to the next 2^n - 1 or 2^n + 2^(n - 1) - 1 depending
+ // Round up to the next 2^n - 1 or 2^n + 2^(n - 1) - 1 depending
// on which one is the next:
--d;
d |= d >> 2;
« no previous file with comments | « src/liblzma/lzma/lzma2_decoder.c ('k') | src/liblzma/lzma/lzma_decoder.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698