From d31a14855e65616fe278bc21c2a6caf8e9a33193 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Sun, 26 Sep 2010 22:05:42 +0900 Subject: [PATCH] sexp_read_bignum should take a signed char --- opt/bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opt/bignum.c b/opt/bignum.c index 767d8898..1f7e45d6 100644 --- a/opt/bignum.c +++ b/opt/bignum.c @@ -208,7 +208,7 @@ sexp_uint_t sexp_bignum_fxdiv (sexp ctx, sexp a, sexp_uint_t b, int offset) { } sexp sexp_read_bignum (sexp ctx, sexp in, sexp_uint_t init, - char sign, sexp_uint_t base) { + signed char sign, sexp_uint_t base) { int c, digit; sexp_gc_var1(res); sexp_gc_preserve1(ctx, res);