summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2017-11-16 11:58:17 +0100
committerLubomir Rintel <lkundrak@v3.sk>2017-12-11 10:30:26 +0100
commit44be0dfca7f1bc525bb56cbf36a6ed840ba42346 (patch)
tree710e055ea521be26c8ccc8bf10d32a6caf4723b4
parentffe89f86e0116c49eb93cb2b19894f1715f66148 (diff)
downloadNetworkManager-44be0dfca7f1bc525bb56cbf36a6ed840ba42346.tar.gz
platform/nmp-object: (trivial) keep enum ordered by a numeric value
-rw-r--r--src/platform/nmp-object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/platform/nmp-object.h b/src/platform/nmp-object.h
index 7f0ff4e66d..f2149e1ee2 100644
--- a/src/platform/nmp-object.h
+++ b/src/platform/nmp-object.h
@@ -35,8 +35,8 @@ typedef enum { /*< skip >*/
typedef enum { /*< skip >*/
NMP_CACHE_OPS_UNCHANGED = NM_PLATFORM_SIGNAL_NONE,
- NMP_CACHE_OPS_UPDATED = NM_PLATFORM_SIGNAL_CHANGED,
NMP_CACHE_OPS_ADDED = NM_PLATFORM_SIGNAL_ADDED,
+ NMP_CACHE_OPS_UPDATED = NM_PLATFORM_SIGNAL_CHANGED,
NMP_CACHE_OPS_REMOVED = NM_PLATFORM_SIGNAL_REMOVED,
} NMPCacheOpsType;