From 8b54eeeb041b18eb05e5581a268d96bb762ffa80 Mon Sep 17 00:00:00 2001 From: wbhart Date: Sat, 10 Jan 2009 15:50:07 +0000 Subject: [PATCH] Fixed a minor typo. --- gmpxx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gmpxx.h b/gmpxx.h index 812f4474..23e87e7b 100644 --- a/gmpxx.h +++ b/gmpxx.h @@ -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); } };