diff options
author | phk <phk@FreeBSD.org> | 2003-06-01 09:27:33 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-06-01 09:27:33 +0000 |
commit | 78a926d30612a8bc02afa3a51477fb22dd9e9fea (patch) | |
tree | 37f1d90d285d8a63f0f7290a83965e0eca41f319 /sys/dev/an | |
parent | 5404794249274480ddbaf7403964cb3ee8e236fd (diff) | |
download | FreeBSD-src-78a926d30612a8bc02afa3a51477fb22dd9e9fea.zip FreeBSD-src-78a926d30612a8bc02afa3a51477fb22dd9e9fea.tar.gz |
Remove break after return.
Add XXX comment where intent is unclear.
Found by: FlexeLint
Diffstat (limited to 'sys/dev/an')
-rw-r--r-- | sys/dev/an/if_an.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/an/if_an.c b/sys/dev/an/if_an.c index 8536cf2..9d6c568 100644 --- a/sys/dev/an/if_an.c +++ b/sys/dev/an/if_an.c @@ -1816,7 +1816,6 @@ an_setdef(sc, areq) default: printf("an%d: unknown RID: %x\n", sc->an_unit, areq->an_type); return; - break; } @@ -1838,6 +1837,7 @@ an_promisc(sc, promisc) { if (sc->an_was_monitor) an_reset(sc); + /* XXX: indentation bug or braces bug ? */ if (sc->mpi350) an_init_mpi350_desc(sc); if (sc->an_monitor || sc->an_was_monitor) |