minor changes: typos and coding style

This commit is contained in:
fbernon
2009-07-09 10:21:16 +00:00
parent 1eee0be951
commit ce5699f41b
5 changed files with 10 additions and 10 deletions

View File

@@ -668,7 +668,7 @@ void
igmp_delaying_member( struct igmp_group *group, u8_t maxresp)
{
if ((group->group_state == IGMP_GROUP_IDLE_MEMBER) ||
((group->group_state == IGMP_GROUP_DELAYING_MEMBER) && (maxresp > group->timer))) {
((group->group_state == IGMP_GROUP_DELAYING_MEMBER) && (maxresp > group->timer))) {
igmp_start_timer(group, (maxresp)/2);
group->group_state = IGMP_GROUP_DELAYING_MEMBER;
}