mirror of
https://git.kernel.org/pub/scm/network/iproute2/iproute2.git
synced 2026-01-26 14:13:24 +00:00
ip: fix minor style issue
Replace 'const char*' with 'const char *'. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
parent
f4e5e851fc
commit
3ba64ea363
@ -1412,8 +1412,11 @@ static const struct ifa_flag_data_t {
|
||||
{ .name = "stable-privacy", .mask = IFA_F_STABLE_PRIVACY, .readonly = true, .v6only = true},
|
||||
};
|
||||
|
||||
/* Returns a pointer to the data structure for a particular interface flag, or null if no flag could be found */
|
||||
static const struct ifa_flag_data_t* lookup_flag_data_by_name(const char* flag_name) {
|
||||
/*
|
||||
* Returns a pointer to the data structure for a particular interface flag
|
||||
* or null if no flag could be found
|
||||
*/
|
||||
static const struct ifa_flag_data_t* lookup_flag_data_by_name(const char *flag_name) {
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(ifa_flag_data); ++i) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user