Fix order of arguments

This commit is contained in:
Justin Ethier 2017-02-16 01:08:15 -05:00
parent d1a6db14a7
commit 77d8efe627

View file

@ -2932,7 +2932,7 @@ object Cyc_num_op_va_list(void *data, int argc,
buf->bignum_t.tag = bignum_tag;
// TODO: allocate a new one here?
//buf->bignum_t.bn = ((bignum_type *) n)->bn;
mp_init_copy(&bignum_value(n), &(buf->bignum_t.bn));
mp_init_copy(&(buf->bignum_t.bn), &bignum_value(n));
} else {
goto bad_arg_type_error;
}