mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove extra ';'
Found by: FlexeLint
This commit is contained in:
parent
5d9bef6473
commit
9d4b1fa40e
2 changed files with 2 additions and 2 deletions
|
|
@ -1499,7 +1499,7 @@ tame_mouse(struct psm_softc *sc, mousestatus_t *status, unsigned char *buf)
|
|||
buf[7] = (~status->button >> 3) & 0x7f;
|
||||
return MOUSE_SYS_PACKETSIZE;
|
||||
}
|
||||
return sc->inputbytes;;
|
||||
return sc->inputbytes;
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
|
|
@ -1499,7 +1499,7 @@ tame_mouse(struct psm_softc *sc, mousestatus_t *status, unsigned char *buf)
|
|||
buf[7] = (~status->button >> 3) & 0x7f;
|
||||
return MOUSE_SYS_PACKETSIZE;
|
||||
}
|
||||
return sc->inputbytes;;
|
||||
return sc->inputbytes;
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Reference in a new issue