From 8a64a65b58187b70458cf329f0a00a1bebd8fcbe Mon Sep 17 00:00:00 2001
From: dh00601 <dh00601@surrey.ac.uk>
Date: Mon, 1 Nov 2021 17:15:37 +0000
Subject: [PATCH] fixed typo with freeing the store memaddr

---
 binarycpython/utils/grid.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/binarycpython/utils/grid.py b/binarycpython/utils/grid.py
index 0ca70117b..ac190b976 100644
--- a/binarycpython/utils/grid.py
+++ b/binarycpython/utils/grid.py
@@ -1801,7 +1801,7 @@ class Population:
             1,
         )
         # free store memory:
-        binary_c_bindings.free_store_memaddr(self.grid_options["_store_memaddr"])
+        _binary_c_bindings.free_store_memaddr(self.grid_options["_store_memaddr"])
 
         # Return a set of results and errors
         output_dict = {
-- 
GitLab