Corrected an error I introduced.

This commit is contained in:
wbhart 2009-01-10 05:24:22 +00:00
parent 811e7de5a7
commit 7a5325a386

View File

@ -1301,7 +1301,7 @@ struct __gmp_alloc_cstring
{
void (*freefunc) (void *, size_t);
mp_get_memory_functions (NULL, NULL, &freefunc);
(*free_func) (str, std::strlen(str)+1);
(*freefunc) (str, std::strlen(str)+1);
}
};