From 7a5325a386e8e69b9c41552115520834ba9c2281 Mon Sep 17 00:00:00 2001 From: wbhart Date: Sat, 10 Jan 2009 05:24:22 +0000 Subject: [PATCH] Corrected an error I introduced. --- gmpxx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gmpxx.h b/gmpxx.h index 5e9606ba..292aacf4 100644 --- a/gmpxx.h +++ b/gmpxx.h @@ -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); } };