Remove some stray ';'s

Submitted by:	marc balmer
This commit is contained in:
Warner Losh 2010-05-13 01:50:29 +00:00
parent 217c0da373
commit be73c87b5c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=208022
2 changed files with 2 additions and 2 deletions

View File

@ -528,7 +528,7 @@ admsw_attach(device_t dev)
ifmedia_add(&sc->sc_ifmedia[i], IFM_ETHER|IFM_AUTO, 0, NULL);
ifmedia_set(&sc->sc_ifmedia[i], IFM_ETHER|IFM_AUTO);
ifp = sc->sc_ifnet[i] = if_alloc(IFT_ETHER);;
ifp = sc->sc_ifnet[i] = if_alloc(IFT_ETHER);
/* Setup interface parameters */
ifp->if_softc = sc;

View File

@ -159,7 +159,7 @@ static int
elf_reloc_internal(linker_file_t lf, Elf_Addr relocbase, const void *data,
int type, int local, elf_lookup_fn lookup)
{
Elf_Addr *where = (Elf_Addr *)NULL;;
Elf_Addr *where = (Elf_Addr *)NULL;
Elf_Addr addr;
Elf_Addr addend = (Elf_Addr)0;
Elf_Word rtype = (Elf_Word)0, symidx;