summaryrefslogtreecommitdiffstats
path: root/ffi/lang/python/sequoia/glue.py
diff options
context:
space:
mode:
Diffstat (limited to 'ffi/lang/python/sequoia/glue.py')
-rw-r--r--ffi/lang/python/sequoia/glue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffi/lang/python/sequoia/glue.py b/ffi/lang/python/sequoia/glue.py
index 4b74d609..799c550c 100644
--- a/ffi/lang/python/sequoia/glue.py
+++ b/ffi/lang/python/sequoia/glue.py
@@ -84,7 +84,7 @@ class SQObject(object):
def sq_str(s):
t = ffi.string(s).decode()
- lib.sq_string_free(s)
+ lib.free(s)
return t
_str = sq_str