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/dgfirmware.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/dgfirmware.c')
-rw-r--r-- | tools/firmware-utils/src/dgfirmware.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/dgfirmware.c b/tools/firmware-utils/src/dgfirmware.c index 5ff3b69646..e3257f1077 100644 --- a/tools/firmware-utils/src/dgfirmware.c +++ b/tools/firmware-utils/src/dgfirmware.c @@ -1,5 +1,6 @@ #include <stdlib.h> #include <stdio.h> +#include <string.h> #define IMG_SIZE 0x3e0000 |