mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 20:45:06 +02:00
Fix order of arguments
This commit is contained in:
parent
d1a6db14a7
commit
77d8efe627
1 changed files with 1 additions and 1 deletions
|
@ -2932,7 +2932,7 @@ object Cyc_num_op_va_list(void *data, int argc,
|
||||||
buf->bignum_t.tag = bignum_tag;
|
buf->bignum_t.tag = bignum_tag;
|
||||||
// TODO: allocate a new one here?
|
// TODO: allocate a new one here?
|
||||||
//buf->bignum_t.bn = ((bignum_type *) n)->bn;
|
//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 {
|
} else {
|
||||||
goto bad_arg_type_error;
|
goto bad_arg_type_error;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue