From f077cb7a09740961290586158ae7f5f4ddb05b02 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 22 Nov 2006 14:56:40 +0000 Subject: r19836: Fix warnings in some IDL files. (This used to be commit bd48f78b1d6dba73e44630ad930fd6089d2076b2) --- source4/torture/rpc/atsvc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/torture/rpc/atsvc.c') diff --git a/source4/torture/rpc/atsvc.c b/source4/torture/rpc/atsvc.c index 227e56a85b..eaaac2005b 100644 --- a/source4/torture/rpc/atsvc.c +++ b/source4/torture/rpc/atsvc.c @@ -108,11 +108,11 @@ static bool test_JobAdd(struct torture_context *tctx, struct dcerpc_pipe *p) return false; } - if (!test_JobGetInfo(p, tctx, r.out.job_id)) { + if (!test_JobGetInfo(p, tctx, *r.out.job_id)) { return false; } - if (!test_JobDel(p, tctx, r.out.job_id, r.out.job_id)) { + if (!test_JobDel(p, tctx, *r.out.job_id, *r.out.job_id)) { return false; } -- cgit