diff options
| author | Sam Leffler <sam@FreeBSD.org> | 2005-04-02 18:56:50 +0000 |
|---|---|---|
| committer | Sam Leffler <sam@FreeBSD.org> | 2005-04-02 18:56:50 +0000 |
| commit | 15f139756b4b698f70a673d5310b4733ac69d954 (patch) | |
| tree | 0e723426714617e3f1dd95911daf71b74dca5ff5 /sys/dev/ath | |
| parent | a4d8dd103ec09245e239bc560cc00a0517f21b43 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ath')
| -rw-r--r-- | sys/dev/ath/ath_rate/sample/sample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ath/ath_rate/sample/sample.c b/sys/dev/ath/ath_rate/sample/sample.c index 0cdc84b16639..fd88101d0f78 100644 --- a/sys/dev/ath/ath_rate/sample/sample.c +++ b/sys/dev/ath/ath_rate/sample/sample.c @@ -118,7 +118,7 @@ static __inline int size_to_bin(int size) { int x = 0; for (x = 0; x < NUM_PACKET_SIZE_BINS; x++) { - if (size < packet_size_bins[x]) { + if (size <= packet_size_bins[x]) { return x; } } |
