style fix, no code changes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2019-05-14 17:26:47 +02:00
parent 0545bfa841
commit 8c317f03f6
6 changed files with 25 additions and 9 deletions

View File

@@ -124,7 +124,8 @@ static char* print_tc_classid(uint32_t cid)
}
/* Get a qdisc handle. Return 0 on success, !0 otherwise. */
static int get_qdisc_handle(uint32_t *h, const char *str) {
static int get_qdisc_handle(uint32_t *h, const char *str)
{
uint32_t maj;
char *p;
@@ -143,7 +144,8 @@ static int get_qdisc_handle(uint32_t *h, const char *str) {
}
/* Get class ID. Return 0 on success, !0 otherwise. */
static int get_tc_classid(uint32_t *h, const char *str) {
static int get_tc_classid(uint32_t *h, const char *str)
{
uint32_t maj, min;
char *p;

View File

@@ -365,7 +365,8 @@ static int FAST_FUNC read_staticlease(const char *const_line, void *arg)
return 1;
}
static int FAST_FUNC read_optset(const char *line, void *arg) {
static int FAST_FUNC read_optset(const char *line, void *arg)
{
return udhcp_str2optset(line, arg,
dhcp_optflags, dhcp_option_strings,
/*dhcpv6:*/ 0

View File

@@ -312,7 +312,7 @@ static void progress_meter(int flag)
}
}
#else
static ALWAYS_INLINE void progress_meter(int flag UNUSED_PARAM) { }
static ALWAYS_INLINE void progress_meter(int flag UNUSED_PARAM) {}
#endif