1 comment:
File src/osmo-bsc/bts_vty.c:
Patch Set #2, Line 187: static const char *args[] = { "nokia-e1" };
`static const char *` array should probably be `static const char * const`
If I change that line to what the linter asks for, the result is compilation warning about discarding const qualifier: `cfg_bts_type()` function created by `DEFUN_USRATTR()` magic takes `const char **` rather than `const char * const*`. So what do we do?
To view, visit change 42729. To unsubscribe, or for help writing mail filters, visit settings.