Fixed a minor typo.

This commit is contained in:
wbhart 2009-01-10 15:50:07 +00:00
parent 1dd5c2a5e9
commit 8b54eeeb04

View File

@ -1306,7 +1306,7 @@ struct __gmp_alloc_cstring : __gmp_alloc_cstring_c
~__gmp_alloc_cstring()
{
mp_get_memory_functions (NULL, NULL, &free_func);
(*freefunc) (str, std::strlen(str)+1);
(*free_func) (str, std::strlen(str)+1);
}
};