From 90f4ece295b2ba5f9b3f36ea8547e65bea1e85f6 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 1 Jun 2009 20:40:18 +0200 Subject: [PATCH] Kill the expect for now. --- driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver.c b/driver.c index f07e63e..dfa61dd 100644 --- a/driver.c +++ b/driver.c @@ -123,7 +123,7 @@ void decode_ac_coefficients(const struct huffman_table* tbl, struct bit_source* unsigned length = tbl->ac_table_length[lookup]; unsigned r = tbl->ac_table_skip[lookup]; - if (__builtin_expect(code == AC_DEHUF_SLOW_PATH, 0)) { + if (code == AC_DEHUF_SLOW_PATH) { unsigned rs = read_huffman_symbol_no_refill(tbl, bits); if (rs == 0x00) { /* end of block */ -- 2.39.2