misplaced parenthesis in LEN macro

This commit is contained in:
noname@inventati.org 2014-04-20 15:41:40 +04:00 committed by Roberto E. Vargas Caballero
parent 3269bf213d
commit 6b56cbf9cc
1 changed files with 1 additions and 1 deletions

2
st.c
View File

@ -67,7 +67,7 @@ char *argv0;
/* macros */
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) < (b) ? (b) : (a))
#define LEN(a) (sizeof(a) / sizeof(a[0]))
#define LEN(a) (sizeof(a) / sizeof(a)[0])
#define DEFAULT(a, b) (a) = (a) ? (a) : (b)
#define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
#define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)