From: Eric Biggers Date: Sun, 1 Jun 2014 13:25:55 +0000 (-0500) Subject: lzx-compress.c: Use pointers in lzx_optimize_block() X-Git-Tag: v1.7.0~68 X-Git-Url: https://wimlib.net/git/?a=commitdiff_plain;h=1e8622c4b598811feafbbf0c2c2f2c5bc5d29540;hp=1e8622c4b598811feafbbf0c2c2f2c5bc5d29540;p=wimlib lzx-compress.c: Use pointers in lzx_optimize_block() This makes the performance less reliant on the compiler recognizing that the 'struct lzx_block_spec' does not change throughout the loop. ---