aboutsummaryrefslogtreecommitdiffstats
path: root/libasn1compiler
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2005-08-15 01:04:48 +0000
committerLev Walkin <vlm@lionet.info>2005-08-15 01:04:48 +0000
commitc08c3cf13b0480ec44c5037764d58ec732db8303 (patch)
tree313017182b95f1ae3816b261e7d3b4b45d51f6fc /libasn1compiler
parent3f36e46f794fada04626bceeef32ddc09d270417 (diff)
oops
Diffstat (limited to 'libasn1compiler')
-rw-r--r--libasn1compiler/asn1c_misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libasn1compiler/asn1c_misc.c b/libasn1compiler/asn1c_misc.c
index c8cd2e70..7483a200 100644
--- a/libasn1compiler/asn1c_misc.c
+++ b/libasn1compiler/asn1c_misc.c
@@ -261,8 +261,8 @@ asn1c_type_fits_long(arg_t *arg, asn1p_expr_t *expr) {
* standard will give it an unsigned type.
* It is defined here as a constant expression.
*/
-#define LEFTMIN 2147483647
-#define RIGHTMAX (-LEFTMIN-1)
+#define RIGHTMAX 2147483647 /* of 32-bit integer type */
+#define LEFTMIN (-RIGHTMAX-1) /* of 32-bit integer type */
/* Descend to the terminal type */
expr = asn1f_find_terminal_type_ex(arg->asn, expr);