Fix a warning

slava 2006-12-03 04:54:54 +00:00
parent c968767973
commit 936f7d8495
1 changed files with 1 additions and 1 deletions

View File

@ -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: