From: Wei Liu Date: Wed, 18 Mar 2015 21:33:58 +0000 (+0000) Subject: libxlu: avoid having two definitions of XLU_ConfigList X-Git-Tag: 4.6.0-rc1~931 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=51f2224552cc1e6cb22b8b169999cd9711bc8cbc;p=xen.git libxlu: avoid having two definitions of XLU_ConfigList There is already a typedef in libxlutil.h. Remove the one in libxlu_internal.h. Reported-by: Konrad Rzeszutek Wilk Signed-off-by: Wei Liu Acked-by: Ian Campbell --- diff --git a/tools/libxl/libxlu_internal.h b/tools/libxl/libxlu_internal.h index 3451cfe645..0acdde38f4 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 {