[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH] tools/utils: move XLU_Operation to libxlu_internal.h
This enumerated value is never used outside of the configuration parser. As such, move to the internal header. Signed-off-by: Elliott Mitchell <ehem+xen@xxxxxxx> --- tools/include/libxlutil.h | 5 ----- tools/libs/util/libxlu_internal.h | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/include/libxlutil.h b/tools/include/libxlutil.h index 4dd3c5e92b..24c31744ae 100644 --- a/tools/include/libxlutil.h +++ b/tools/include/libxlutil.h @@ -25,11 +25,6 @@ enum XLU_ConfigValueType { XLU_LIST, }; -enum XLU_Operation { - XLU_OP_ASSIGNMENT = 0, - XLU_OP_ADDITION, -}; - /* Unless otherwise stated, all functions return an errno value. */ typedef struct XLU_Config XLU_Config; typedef struct XLU_ConfigList XLU_ConfigList; diff --git a/tools/libs/util/libxlu_internal.h b/tools/libs/util/libxlu_internal.h index 1f7559ecd9..68bacdc384 100644 --- a/tools/libs/util/libxlu_internal.h +++ b/tools/libs/util/libxlu_internal.h @@ -25,6 +25,11 @@ #include "libxlutil.h" +enum XLU_Operation { + XLU_OP_ASSIGNMENT = 0, + XLU_OP_ADDITION, +}; + struct XLU_ConfigList { int avalues; /* available slots */ int nvalues; /* actual occupied slots */ -- 2.30.2
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |