diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-12-02 11:26:11 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-02 11:26:11 -0500 |
| commit | 8abe686a3e15ac688d8f73b84cf685a6d47bcbeb (patch) | |
| tree | fa7ec2b2b12d0befc53041d39509f3dda8f78292 /ospf6d/ospf6_interface.c | |
| parent | bb2d775cca77ef34738653fbc9f133f178642881 (diff) | |
| parent | 2b64873d24730882af68bdf2881aa380a3a8d17f (diff) | |
Merge pull request #5389 from opensourcerouting/constify
*: constify ALL the things
Diffstat (limited to 'ospf6d/ospf6_interface.c')
| -rw-r--r-- | ospf6d/ospf6_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index a56ba0a694..93265afc43 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -52,7 +52,7 @@ DEFINE_HOOK(ospf6_interface_change, unsigned char conf_debug_ospf6_interface = 0; -const char *ospf6_interface_state_str[] = { +const char *const ospf6_interface_state_str[] = { "None", "Down", "Loopback", "Waiting", "PointToPoint", "DROther", "BDR", "DR", NULL}; |
