diff options
author | Kevin Ryde <user42@zip.com.au> | 2002-01-08 01:29:20 +0100 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2002-01-08 01:29:20 +0100 |
commit | 68ef8241ef30f492930d76b7c9bd46b46cd4f11e (patch) | |
tree | b64c12d2a2adb4a945ad0f5265992a2df62a0004 /tests/mpn | |
parent | 18d560404ac857972f8cb296881f66d07d4565ee (diff) | |
download | gmp-68ef8241ef30f492930d76b7c9bd46b46cd4f11e.tar.gz |
More of:
* tests/mpn/t-g_str_size.c: New test.
Diffstat (limited to 'tests/mpn')
-rw-r--r-- | tests/mpn/t-g_str_size.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mpn/t-g_str_size.c b/tests/mpn/t-g_str_size.c index 8917b8c55..311223db9 100644 --- a/tests/mpn/t-g_str_size.c +++ b/tests/mpn/t-g_str_size.c @@ -65,7 +65,7 @@ check_exact (void) for (limbs = 1; limbs < 20; limbs++) { want = str_size_exact (limbs, base); - MPN_GET_STR_SIZE (got, limbs, base); + MPN_GET_STR_SIZE (got, base, limbs); if (got < want) { printf ("MPN_GET_STR_SIZE too small\n"); |