igzip: remove stray duplicate semicolon

Change-Id: I0df14600e2f49dd04d3e94bdfe2c155faa9ac2ee
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp 2018-03-12 13:03:08 -07:00 committed by Greg Tucker
parent bb05f0fcdb
commit f9a61187c5

View File

@ -208,7 +208,7 @@ static inline uint32_t compute_hash_mad(uint32_t data)
int16_t data_low;
int16_t data_high;
data_low = data; ;
data_low = data;
data_high = data >> 16;
data = PROD1 * data_low + PROD2 * data_high;