From 74809e64cc3b70b4b1d79e5ac8e0e75359451b96 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 28 Feb 2014 16:13:22 -0500 Subject: [PATCH] libnm-glib: fix glib-mkenums warnings glib-mkenums doesn't parse /*< public >*/ and /*< private >*/, and in fact, it warns about them, so don't write it that way. --- libnm-glib/nm-vpn-plugin-ui-interface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libnm-glib/nm-vpn-plugin-ui-interface.h b/libnm-glib/nm-vpn-plugin-ui-interface.h index 7e0a68011a..2753de4467 100644 --- a/libnm-glib/nm-vpn-plugin-ui-interface.h +++ b/libnm-glib/nm-vpn-plugin-ui-interface.h @@ -86,10 +86,10 @@ typedef enum /*< flags >*/ { * information to UI programs. **/ typedef enum { - /*< private >*/ + /* private */ NM_VPN_PLUGIN_UI_INTERFACE_PROP_FIRST = 0x1000, - /*< public >*/ + /* public */ NM_VPN_PLUGIN_UI_INTERFACE_PROP_NAME = NM_VPN_PLUGIN_UI_INTERFACE_PROP_FIRST, NM_VPN_PLUGIN_UI_INTERFACE_PROP_DESC, NM_VPN_PLUGIN_UI_INTERFACE_PROP_SERVICE