aboutsummaryrefslogtreecommitdiffstats
path: root/tests/90-cond-int-type-OK.asn1.-Pfnative-types
diff options
context:
space:
mode:
Diffstat (limited to 'tests/90-cond-int-type-OK.asn1.-Pfnative-types')
-rw-r--r--tests/90-cond-int-type-OK.asn1.-Pfnative-types6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/90-cond-int-type-OK.asn1.-Pfnative-types b/tests/90-cond-int-type-OK.asn1.-Pfnative-types
index 344c89a0..461e5eb5 100644
--- a/tests/90-cond-int-type-OK.asn1.-Pfnative-types
+++ b/tests/90-cond-int-type-OK.asn1.-Pfnative-types
@@ -1741,7 +1741,7 @@ OK_IntegerInRange3_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
value = *(const long *)sptr;
- if((value >= -2147483648 && value <= 2147483647)) {
+ if((value >= (-2147483647L - 1) && value <= 2147483647)) {
/* Constraint check succeeded */
return 0;
} else {
@@ -1882,7 +1882,7 @@ OK_IntegerInRange4_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
value = *(const long *)sptr;
- if(((value == -2147483648) || (value == 2147483647))) {
+ if(((value == (-2147483647L - 1)) || (value == 2147483647))) {
/* Constraint check succeeded */
return 0;
} else {
@@ -2023,7 +2023,7 @@ OK_IntegerInRange5_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
value = *(const long *)sptr;
- if(((value == -2147483648) || (value == 2147483647))) {
+ if(((value == (-2147483647L - 1)) || (value == 2147483647))) {
/* Constraint check succeeded */
return 0;
} else {