From 936f7d849529afc0153dbc11894afef7ae85343c Mon Sep 17 00:00:00 2001 From: slava Date: Sun, 3 Dec 2006 04:54:54 +0000 Subject: [PATCH] Fix a warning --- vm/bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/bignum.c b/vm/bignum.c index aeab6c40ba..26589d6927 100644 --- a/vm/bignum.c +++ b/vm/bignum.c @@ -574,7 +574,7 @@ bignum_add_unsigned(bignum_type x, bignum_type y, int negative_p) bignum_type bignum_subtract_unsigned(bignum_type x, bignum_type y) { - int negative_p; + int negative_p = 0; switch (bignum_compare_unsigned (x, y)) { case bignum_comparison_equal: