diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2016-02-23 20:25:48 +0100 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2016-02-23 20:40:51 +0100 |
commit | 404d53a968147cbb44b3ecf756b0ab4db77d962a (patch) | |
tree | a35aed15c6cec0701fe1095b56f641c53165c424 /src/network/networkctl.c | |
parent | 662ea1b14ab2306de8c7793e6283994d695cc09d (diff) |
networkctl: fix const
Diffstat (limited to 'src/network/networkctl.c')
-rw-r--r-- | src/network/networkctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/networkctl.c b/src/network/networkctl.c index 07ac15f478..6b1fbc603e 100644 --- a/src/network/networkctl.c +++ b/src/network/networkctl.c @@ -903,7 +903,7 @@ static char *lldp_capabilities_to_string(uint16_t x) { static void lldp_capabilities_legend(uint16_t x) { unsigned w, i, cols = columns(); - static const char const* table[] = { + static const char* const table[] = { "o - Other", "p - Repeater", "b - Bridge", |