Skip to content

Commit 2c18f2b

Browse files
Alain Volmaterwango
authored andcommitted
lib: vc8000nanoe: avoid sign redefinition
Avoid SIGN macro redefinition. Signed-off-by: Alain Volmat <[email protected]>
1 parent 286dd28 commit 2c18f2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/vc8000nanoe/inc/enccommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ typedef struct
156156
#ifdef H1_INTERNAL
157157
#define MAX(a, b) ((a) > (b) ? (a) : (b))
158158
#define MIN(a, b) ((a) < (b) ? (a) : (b))
159-
#endif
160159
#define SIGN(a) ((a) < (0) ? (-1) : (1))
160+
#endif
161161
#define OUT_OF_RANGE(x,a,b) ((((i32)x)<(a)?(1):(0)) || ((x)>(b)?(1):(0)))
162162
#define CLIP3(v, min, max) ((v) < (min) ? (min) : ((v) > (max) ? (max) : (v)))
163163

0 commit comments

Comments
 (0)