From 4a2d9474bcb0406cf408f7c87fdc4b3c5439937b Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Sat, 31 Jul 2010 22:04:38 +0900 Subject: [PATCH] forgot to update types lookup for bignums after introducing byte vectors --- opt/bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opt/bignum.c b/opt/bignum.c index 09c82ded..767d8898 100644 --- a/opt/bignum.c +++ b/opt/bignum.c @@ -487,7 +487,7 @@ enum sexp_number_combs { }; static int sexp_number_types[] = - {0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0}; + {0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0}; static int sexp_number_type (sexp a) { return sexp_pointerp(a) ? sexp_number_types[sexp_pointer_tag(a)&15]