From: Mans Rullgard Date: Sat, 16 Jul 2011 18:10:43 +0000 (+0100) Subject: des: fix #if conditional around P_shuffle X-Git-Tag: v0.8b1~1983 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd39c076885e8c6d9e05d5573433416180ef4da8;p=platform%2Fupstream%2Flibav.git des: fix #if conditional around P_shuffle CONFIG_SMALL is always defined as 0 or 1. Signed-off-by: Mans Rullgard --- diff --git a/libavutil/des.c b/libavutil/des.c index db2227b..d3f715e 100644 --- a/libavutil/des.c +++ b/libavutil/des.c @@ -39,7 +39,7 @@ static const uint8_t IP_shuffle[] = { }; #undef T -#if defined(CONFIG_SMALL) || defined(GENTABLES) +#if CONFIG_SMALL || defined(GENTABLES) #define T(a, b, c, d) 32-a,32-b,32-c,32-d static const uint8_t P_shuffle[] = { T(16, 7, 20, 21),