diff options
author | Daniel Mack <zonque@gmail.com> | 2014-03-07 21:38:48 +0100 |
---|---|---|
committer | Daniel Mack <zonque@gmail.com> | 2014-03-07 21:38:48 +0100 |
commit | 2c5859afecee81e345fc9526b1083bf79990ffb8 (patch) | |
tree | 8bc8deeea888c3df4a28a5f94f3ab79da3fe6b30 /src/core/unit.c | |
parent | fe8d029277f8077d4537489b358ce7f10d59ecc2 (diff) |
Make tables for DEFINE_STRING_TABLE_LOOKUP consistent
Bring some arrays that are used for DEFINE_STRING_TABLE_LOOKUP() in the
same order than the enums they reference.
Also, pass the corresponding _MAX value to the array initalizer where
appropriate.
Diffstat (limited to 'src/core/unit.c')
-rw-r--r-- | src/core/unit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/unit.c b/src/core/unit.c index 85250ca2aa..aa723cb8c5 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -3278,9 +3278,9 @@ static const char* const unit_dependency_table[_UNIT_DEPENDENCY_MAX] = { [UNIT_TRIGGERED_BY] = "TriggeredBy", [UNIT_PROPAGATES_RELOAD_TO] = "PropagatesReloadTo", [UNIT_RELOAD_PROPAGATED_FROM] = "ReloadPropagatedFrom", + [UNIT_JOINS_NAMESPACE_OF] = "JoinsNamespaceOf", [UNIT_REFERENCES] = "References", [UNIT_REFERENCED_BY] = "ReferencedBy", - [UNIT_JOINS_NAMESPACE_OF] = "JoinsNamespaceOf", }; DEFINE_STRING_TABLE_LOOKUP(unit_dependency, UnitDependency); |