Skip to content
Snippets Groups Projects
Commit a30f69c2 authored by gambas's avatar gambas
Browse files

Fix error message of BigInt.ToString().

[GB.GMP]
* BUG: Fix error message of BigInt.ToString().
parent 353d0154
No related branches found
No related tags found
Loading
Pipeline #238351577 passed
......@@ -555,7 +555,7 @@ BEGIN_METHOD(BigInt_FromString, GB_STRING str; GB_INTEGER base)
n = BIGINT_from_string(GB.ToZeroString(ARG(str)), base);
if (!n)
{
GB.Error(GB_ERR_TYPE);
GB.Error(GB_ERR_ARG);
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment