From 210830392999691469a55f4f5e2032abcdb20b8a Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 22 Jan 2009 08:10:11 +0100 Subject: pidl/python: Add explicit casts, fixing implicit cast warnings. Michael --- pidl/lib/Parse/Pidl/Samba4/Python.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pidl/lib') diff --git a/pidl/lib/Parse/Pidl/Samba4/Python.pm b/pidl/lib/Parse/Pidl/Samba4/Python.pm index 3efe77bdd9..48785f5b0a 100644 --- a/pidl/lib/Parse/Pidl/Samba4/Python.pm +++ b/pidl/lib/Parse/Pidl/Samba4/Python.pm @@ -828,7 +828,7 @@ sub ConvertObjectFromPythonData($$$$$$) return; } $self->pidl("PY_CHECK_TYPE($ctype_name, $cvar, $fail);"); - $self->assign($target, "py_talloc_get_ptr($cvar)"); + $self->assign($target, "talloc_ptrtype(py_talloc_get_ptr($cvar), $target)"); return; } -- cgit