From 3c181a88c6c03cde3d6abb917c656bbe6be8a130 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Mon, 9 May 2005 12:43:12 +0000 Subject: r6678: fix python python after talloc() shakeup (This used to be commit f629bffb1a6b8c2ea54fcfe33865b43559abbc77) --- source3/python/py_spoolss_printers_conv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/python/py_spoolss_printers_conv.c') diff --git a/source3/python/py_spoolss_printers_conv.c b/source3/python/py_spoolss_printers_conv.c index f7b2f516df..e31babb001 100644 --- a/source3/python/py_spoolss_printers_conv.c +++ b/source3/python/py_spoolss_printers_conv.c @@ -291,7 +291,7 @@ BOOL py_to_PRINTER_INFO_2(PRINTER_INFO_2 *info, PyObject *dict, || !PyDict_Check(obj)) goto done; - info->devmode = talloc(mem_ctx, sizeof(DEVICEMODE)); + info->devmode = _talloc(mem_ctx, sizeof(DEVICEMODE)); if (!py_to_DEVICEMODE(info->devmode, obj)) goto done; -- cgit