9
0
Fork 0

lib: decompress: remove redundant INT_MAX define

lib/decompress_bunzip2.c includes <common.h> and INT_MAX is already
defined there.  The definition in this file is redundant.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Masahiro Yamada 2015-01-21 14:09:16 +09:00 committed by Sascha Hauer
parent 150cf52a3e
commit 13a1b45058
1 changed files with 0 additions and 4 deletions

View File

@ -53,10 +53,6 @@
#include <bunzip2.h>
#endif /* STATIC */
#ifndef INT_MAX
#define INT_MAX 0x7fffffff
#endif
/* Constants for Huffman coding */
#define MAX_GROUPS 6
#define GROUP_SIZE 50 /* 64 would have been more efficient */