summaryrefslogtreecommitdiff
path: root/gi/pygi-basictype.c
diff options
context:
space:
mode:
Diffstat (limited to 'gi/pygi-basictype.c')
-rw-r--r--gi/pygi-basictype.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gi/pygi-basictype.c b/gi/pygi-basictype.c
index 740463f9..6fbe9292 100644
--- a/gi/pygi-basictype.c
+++ b/gi/pygi-basictype.c
@@ -806,7 +806,7 @@ pygi_arg_basic_type_new_from_info (GITypeInfo *type_info,
PyGIDirection direction)
{
gboolean res = FALSE;
- PyGIArgCache *arg_cache = _arg_cache_alloc ();
+ PyGIArgCache *arg_cache = pygi_arg_cache_alloc ();
if (arg_cache == NULL)
return NULL;
@@ -818,7 +818,7 @@ pygi_arg_basic_type_new_from_info (GITypeInfo *type_info,
if (res) {
return arg_cache;
} else {
- _pygi_arg_cache_free (arg_cache);
+ pygi_arg_cache_free (arg_cache);
return NULL;
}
}