diff options
author | alfred <alfred@FreeBSD.org> | 2003-02-02 13:30:00 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2003-02-02 13:30:00 +0000 |
commit | 86daf0cca62a97be81f25418c5bc87bd61f30ce5 (patch) | |
tree | ef698c578fc83f9d33a0a199470e403aea1df556 /sys/netgraph | |
parent | 8f9cc7853a3a43f6438de39dfffdcc207ccba0ef (diff) | |
download | FreeBSD-src-86daf0cca62a97be81f25418c5bc87bd61f30ce5.zip FreeBSD-src-86daf0cca62a97be81f25418c5bc87bd61f30ce5.tar.gz |
Catch more uses of MIN().
Diffstat (limited to 'sys/netgraph')
-rw-r--r-- | sys/netgraph/ng_device.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/netgraph/ng_device.c b/sys/netgraph/ng_device.c index 55c0606..956b7cf 100644 --- a/sys/netgraph/ng_device.c +++ b/sys/netgraph/ng_device.c @@ -99,9 +99,6 @@ struct ngd_softc { char nodename[NG_NODELEN + 1]; } ngd_softc; -/* helper definition */ -#define MIN(a, b) ((a) < (b) ? (a) : (b)) - /* the per connection receiving queue maximum */ #define NGD_QUEUE_SIZE (1024*10) |