From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Rzeszutek Wilk Subject: Re: [PATCH] libxlu: avoid having two definitions of XLU_ConfigList Date: Wed, 18 Mar 2015 20:28:15 -0400 Message-ID: <20150319002815.GA25672@l.oracle.com> References: <1426714438-1347-1-git-send-email-wei.liu2@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <1426714438-1347-1-git-send-email-wei.liu2@citrix.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: Wei Liu Cc: ian.campbell@citrix.com, xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On Wed, Mar 18, 2015 at 09:33:58PM +0000, Wei Liu wrote: > There is already a typedef in libxlutil.h. Remove the one in > libxlu_internal.h. > > Signed-off-by: Wei Liu Missing the 'Reported-by: Konrad Rzeszutek Wilk ' > --- > tools/libxl/libxlu_internal.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tools/libxl/libxlu_internal.h b/tools/libxl/libxlu_internal.h > index 3451cfe..0acdde3 100644 > --- a/tools/libxl/libxlu_internal.h > +++ b/tools/libxl/libxlu_internal.h > @@ -25,11 +25,11 @@ > > #include "libxlutil.h" > > -typedef struct XLU_ConfigList { > +struct XLU_ConfigList { > int avalues; /* available slots */ > int nvalues; /* actual occupied slots */ > XLU_ConfigValue **values; > -} XLU_ConfigList; > +}; > > typedef struct YYLTYPE > { > -- > 1.9.1 >