From f5684ebdbc87823cfed7742ac0580af594103278 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Wed, 6 Aug 2014 22:13:36 -0500 Subject: [PATCH] decompress_common.c: Don't include error.h --- src/decompress_common.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/decompress_common.c b/src/decompress_common.c index 64e171d9..b56fc3fb 100644 --- a/src/decompress_common.c +++ b/src/decompress_common.c @@ -15,7 +15,6 @@ #endif #include "wimlib/decompress_common.h" -#include "wimlib/error.h" #include "wimlib/util.h" /* for BUILD_BUG_ON() */ #include @@ -179,7 +178,6 @@ make_huffman_decode_table(u16 decode_table[const restrict], if (unlikely(left < 0)) { /* The lengths overflow the codespace; that is, the code * is over-subscribed. */ - DEBUG("Invalid prefix code (over-subscribed)"); return -1; } } @@ -201,7 +199,6 @@ make_huffman_decode_table(u16 decode_table[const restrict], table_num_entries * sizeof(decode_table[0])); return 0; } - DEBUG("Invalid prefix code (incomplete set)"); return -1; } -- 2.43.0