remove useless return statement

Get rid of:
void foo() {
...
	return;
}
This commit is contained in:
Stephen Hemminger 2016-09-01 08:44:20 -07:00
parent 4a564d914d
commit ae810982cc
3 changed files with 0 additions and 3 deletions

View File

@ -373,7 +373,6 @@ next:
}
globfree(&globbuf);
return;
}

View File

@ -52,7 +52,6 @@ static void usage(void)
fprintf(stderr, "Where:\n");
fprintf(stderr, "QDISC_KIND := { prio | cbq | etc. }\n");
fprintf(stderr, "OPTIONS := ... try tc class add <desired QDISC_KIND> help\n");
return;
}
static int tc_class_modify(int cmd, unsigned int flags, int argc, char **argv)

View File

@ -40,7 +40,6 @@ static void stab_help(void)
" linklayer : adapting to a linklayer e.g. atm\n"
"Example: ... stab overhead 20 linklayer atm\n");
return;
}
int check_size_table_opts(struct tc_sizespec *s)