summaryrefslogtreecommitdiff
path: root/src/nmtui
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2022-02-02 12:12:12 +0100
committerThomas Haller <thaller@redhat.com>2022-02-08 11:14:01 +0100
commita2c4f071e48e05f808595aff74ab5c83c95a70cd (patch)
treeac3334be3fa2fe1e6dd4f8ff4d5c5f932f82dd0d /src/nmtui
parente23ebe91834e0f18e7afd713ffe2950df3299b8e (diff)
downloadNetworkManager-a2c4f071e48e05f808595aff74ab5c83c95a70cd.tar.gz
all: drop /*<skip>*/ annotations for enums
We don't run glib-mkenums for certain sources like "core" and "libnm-glib-aux". These annotations have no effect. Drop them. They also mess with the automated formatting.
Diffstat (limited to 'src/nmtui')
-rw-r--r--src/nmtui/nmt-mac-entry.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nmtui/nmt-mac-entry.h b/src/nmtui/nmt-mac-entry.h
index 0ed5a28cbd..de44fb9d0e 100644
--- a/src/nmtui/nmt-mac-entry.h
+++ b/src/nmtui/nmt-mac-entry.h
@@ -9,9 +9,9 @@
#include "nm-utils.h"
#include "libnmt-newt/nmt-newt.h"
-typedef enum { /*< skip >*/
- NMT_MAC_ENTRY_TYPE_MAC,
- NMT_MAC_ENTRY_TYPE_CLONED,
+typedef enum {
+ NMT_MAC_ENTRY_TYPE_MAC,
+ NMT_MAC_ENTRY_TYPE_CLONED,
} NmtMacEntryType;
#define NMT_TYPE_MAC_ENTRY (nmt_mac_entry_get_type())