diff options
author | phk <phk@FreeBSD.org> | 2003-05-31 18:57:41 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-05-31 18:57:41 +0000 |
commit | d6248ffb88205a075952163a1672cfa2c038999e (patch) | |
tree | 446bb3fa63d7f77560f98f72a435c9875323c2c7 /sys/dev/tdfx/tdfx_pci.c | |
parent | 8d009765a16a9b1c042236aab83986d9f30b7c52 (diff) | |
download | FreeBSD-src-d6248ffb88205a075952163a1672cfa2c038999e.zip FreeBSD-src-d6248ffb88205a075952163a1672cfa2c038999e.tar.gz |
Remove extra ';'
Found by: FlexeLint
Diffstat (limited to 'sys/dev/tdfx/tdfx_pci.c')
-rw-r--r-- | sys/dev/tdfx/tdfx_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/tdfx/tdfx_pci.c b/sys/dev/tdfx/tdfx_pci.c index 74d3824..c715d1a 100644 --- a/sys/dev/tdfx/tdfx_pci.c +++ b/sys/dev/tdfx/tdfx_pci.c @@ -754,7 +754,7 @@ tdfx_do_query(u_int cmd, struct tdfx_pio_data *piod) printf("Bad Sub-cmd: 0x%x\n", _IOC_NR(cmd)); #endif return -EINVAL; - }; + } } static int @@ -770,7 +770,7 @@ tdfx_do_pio(u_int cmd, struct tdfx_pio_data *piod) break; default: return -EINVAL; - }; + } } /* Calls to ioctl(2) eventually end up here. Unhandled ioctls return an ENXIO, |