diff options
author | John Crispin <john@openwrt.org> | 2015-12-11 15:09:30 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-12-11 15:09:30 +0000 |
commit | 244173a09392e3b9beb02305e4b4036572044f21 (patch) | |
tree | 1112c4ccc1f57aa3473681c6a13da044e96cbc9b /tools/firmware-utils/src/zyxbcm.c | |
parent | 0231d4135284dec47ec6597cf938698c6117ef1a (diff) | |
download | upstream-244173a09392e3b9beb02305e4b4036572044f21.tar.gz upstream-244173a09392e3b9beb02305e4b4036572044f21.tar.bz2 upstream-244173a09392e3b9beb02305e4b4036572044f21.zip |
firmware-utils: fix various compiler warnings
mostly implicit defines due to missing includes plus one const that
shouldn't be one.
Signed-off-by: Felix Kaechele <felix@kaechele.ca>
SVN-Revision: 47865
Diffstat (limited to 'tools/firmware-utils/src/zyxbcm.c')
-rw-r--r-- | tools/firmware-utils/src/zyxbcm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/zyxbcm.c b/tools/firmware-utils/src/zyxbcm.c index cfd00d3b05..ffeb7cc265 100644 --- a/tools/firmware-utils/src/zyxbcm.c +++ b/tools/firmware-utils/src/zyxbcm.c @@ -18,6 +18,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include <arpa/inet.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |