From 8017286589abfeb9642bf2aea53dccfcb4956143 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 27 May 2005 18:36:23 +0000 Subject: r7037: Add enough pointers in the header file as well Fix a couple of warnings. (This used to be commit fcaa9d495c13af5065dd32f8ed65d4260b3a5539) --- source4/librpc/idl/orpc.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/librpc') diff --git a/source4/librpc/idl/orpc.idl b/source4/librpc/idl/orpc.idl index 4b80c5bfe6..1934a3cbed 100644 --- a/source4/librpc/idl/orpc.idl +++ b/source4/librpc/idl/orpc.idl @@ -59,7 +59,7 @@ interface ObjectRpcBaseTypes { GUID id; /* Extension identifier. */ uint32 size; /* Extension size. */ - [size_is((size+7)&~7)] uint8 data[]; /* Extension data. */ + [size_is(((size+7)&~7))] uint8 data[]; /* Extension data. */ } ORPC_EXTENT; @@ -68,7 +68,7 @@ interface ObjectRpcBaseTypes { uint32 size; /* Num extents. */ uint32 reserved; /* Must be zero. */ - [size_is((size+1)&~1,), unique] ORPC_EXTENT **extent; /* extents */ + [size_is(((size+1)&~1))] ORPC_EXTENT **extent; /* extents */ } ORPC_EXTENT_ARRAY; -- cgit