fix compile error trusty 32bit

This commit is contained in:
Sukchan Lee 2018-03-20 15:12:24 +09:00
parent 8a2699b81f
commit a9e5283db3
2 changed files with 3 additions and 5 deletions

View File

@ -1143,9 +1143,11 @@ AM_CPPFLAGS = \
AM_CFLAGS = \
${ASN_MODULE_CFLAGS} \
-Wall -Werror -Wno-parentheses-equality \
-Wno-overflow -Wno-format \
$(NULL)
# -Wall -Wno-parentheses-equality -Wno-overflow
MAINTAINERCLEANFILES = Makefile.in
MOSTLYCLEANFILES = core *.stackdump

View File

@ -25,11 +25,7 @@ typedef struct asn_per_constraint_s {
int range_bits; /* Full number of bits in the range */
int effective_bits; /* Effective bits */
long lower_bound; /* "lb" value */
#if 0 /* modified by acetcom */
long upper_bound; /* "ub" value */
#else
int64_t upper_bound; /* "ub" value */
#endif
} asn_per_constraint_t;
typedef struct asn_per_constraints_s {
asn_per_constraint_t value;