summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/mse.c
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1994-05-26 13:30:20 +0000
committerrgrimes <rgrimes@FreeBSD.org>1994-05-26 13:30:20 +0000
commitf89d59bbd9248215ae795ee13db911e1b37408b7 (patch)
tree51c5fcfbfb4c1bdbae866f94f33d9f95bb94cc2c /sys/i386/isa/mse.c
parentc8f1a26f8dda7f5350f6d52f5bbc4f5ec1a46cc4 (diff)
downloadFreeBSD-src-f89d59bbd9248215ae795ee13db911e1b37408b7.zip
FreeBSD-src-f89d59bbd9248215ae795ee13db911e1b37408b7.tar.gz
Fix some references to MIN() and MAX() that have been replaced by min() and
max().
Diffstat (limited to 'sys/i386/isa/mse.c')
-rw-r--r--sys/i386/isa/mse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/isa/mse.c b/sys/i386/isa/mse.c
index 5f80b21..466e936 100644
--- a/sys/i386/isa/mse.c
+++ b/sys/i386/isa/mse.c
@@ -286,7 +286,7 @@ mseread(dev, uio)
sc->sc_bytesread = 0;
}
splx(s);
- xfer = MIN(uio->uio_resid, PROTOBYTES - sc->sc_bytesread);
+ xfer = min(uio->uio_resid, PROTOBYTES - sc->sc_bytesread);
if (error = uiomove(&sc->sc_bytes[sc->sc_bytesread], xfer, uio))
return (error);
sc->sc_bytesread += xfer;
OpenPOWER on IntegriCloud