From: Stephen Hemminger Date: Thu, 25 Sep 2025 16:36:57 +0000 (-0700) Subject: ip: fix minor style issue X-Git-Tag: v6.17.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ba64ea3636671aae1c45324b65ec280c0f9b329;p=thirdparty%2Fiproute2.git ip: fix minor style issue Replace 'const char*' with 'const char *'. Signed-off-by: Stephen Hemminger --- diff --git a/ip/ipaddress.c b/ip/ipaddress.c index bbe48a47..4d93a04a 100644 --- a/ip/ipaddress.c +++ b/ip/ipaddress.c @@ -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) {