bhyve: Nuke double-semicolons

A distinct number of double-semicolons ended up in bhyve. Take a pass at
getting rid of many of these harmless typos.

MFC after:	3 days
This commit is contained in:
Elliott Mitchell 2021-08-30 15:26:45 +08:00 committed by Ka Ho Ng
parent 13914e51eb
commit e76c0e4f45
2 changed files with 2 additions and 2 deletions

View File

@ -1825,7 +1825,7 @@ pci_nvme_release_ioreq(struct pci_nvme_softc *sc, struct pci_nvme_ioreq *req)
static struct pci_nvme_ioreq *
pci_nvme_get_ioreq(struct pci_nvme_softc *sc)
{
struct pci_nvme_ioreq *req = NULL;;
struct pci_nvme_ioreq *req = NULL;
sem_wait(&sc->iosemlock);
pthread_mutex_lock(&sc->mtx);

View File

@ -682,7 +682,7 @@ static int
pci_vtscsi_init(struct vmctx *ctx, struct pci_devinst *pi, nvlist_t *nvl)
{
struct pci_vtscsi_softc *sc;
const char *devname, *value;;
const char *devname, *value;
int i;
sc = calloc(1, sizeof(struct pci_vtscsi_softc));