From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kelley Nielsen Subject: [PATCH OPW 10/11] opw: libxl: use macro GCNEW in libxl_qmp.c Date: Mon, 11 Nov 2013 15:23:59 -0800 Message-ID: <1384212240-1235-11-git-send-email-kelleynnn@gmail.com> References: <1384212240-1235-1-git-send-email-kelleynnn@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1384212240-1235-1-git-send-email-kelleynnn@gmail.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xensource.com Cc: anthony.perard@citrix.com, Ian.Campbell@citrix.com List-Id: xen-devel@lists.xenproject.org The new coding style uses the convenience macro GCNEW as declared in libxl_internal.h. Substitute an invocation of this macro for its body at the one place it occurs in libxl_qmp.c. Signed-off-by: Kelley Nielsen Suggested-by: Anthony PERARD --- tools/libxl/libxl_qmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/libxl_qmp.c b/tools/libxl/libxl_qmp.c index f1f6352..20d925f 100644 --- a/tools/libxl/libxl_qmp.c +++ b/tools/libxl/libxl_qmp.c @@ -628,7 +628,7 @@ static void qmp_parameters_common_add(libxl__gc *gc, *param = libxl__json_object_alloc(gc, JSON_MAP); } - arg = libxl__zalloc(gc, sizeof(*arg)); + GCNEW(arg); arg->map_key = libxl__strdup(gc, name); arg->obj = obj; -- 1.8.1.2