diff options
author | John Crispin <blogic@openwrt.org> | 2014-08-03 11:15:51 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-08-03 11:15:51 +0000 |
commit | e892db41419962bed0d00b7aaefe6d3c543eb390 (patch) | |
tree | 50f1b921a31f8e0318e1f027aaf192865583a0d4 /package/network/utils/iwinfo | |
parent | 452dfe6493b7df107592063bc57d7aaaf446cd1f (diff) | |
download | upstream-e892db41419962bed0d00b7aaefe6d3c543eb390.tar.gz upstream-e892db41419962bed0d00b7aaefe6d3c543eb390.tar.bz2 upstream-e892db41419962bed0d00b7aaefe6d3c543eb390.zip |
iwinfo: add missing include statement
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Backport of r41955
git-svn-id: svn://svn.openwrt.org/openwrt/branches/barrier_breaker@41977 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/utils/iwinfo')
-rw-r--r-- | package/network/utils/iwinfo/src/iwinfo_nl80211.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/network/utils/iwinfo/src/iwinfo_nl80211.c b/package/network/utils/iwinfo/src/iwinfo_nl80211.c index 5550e92f2f..b0dc67a70f 100644 --- a/package/network/utils/iwinfo/src/iwinfo_nl80211.c +++ b/package/network/utils/iwinfo/src/iwinfo_nl80211.c @@ -22,6 +22,7 @@ * Parts of this code are derived from the Linux iw utility. */ +#include <limits.h> #include "iwinfo_nl80211.h" #define min(x, y) ((x) < (y)) ? (x) : (y) |