summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Buren <braewoods+rb@braewoods.net>2021-06-10 04:04:53 +0000
committerJames Buren <braewoods+rb@braewoods.net>2021-06-11 19:32:35 +0000
commitab0f23c4b17dfb4f7aa37cdc0e504c2512112fc0 (patch)
tree0caf4264a24ee6fcd3c432d0ca59e8dce7353ff0
parentd01f3192f2a1a34d28ee701e8c397cd7f1827b88 (diff)
downloadrockbox-ab0f23c4b17dfb4f7aa37cdc0e504c2512112fc0.tar.gz
rockbox-ab0f23c4b17dfb4f7aa37cdc0e504c2512112fc0.zip
sendfirm: fix some minor issues
This patches some compile warnings and also makes it work correctly with modern mingw64. Change-Id: I8cd292bc989ae04bbaa1d7149d58d6d833a51c0a
-rw-r--r--utils/MTP/Makefile4
-rw-r--r--utils/MTP/sendfirm.c1
2 files changed, 3 insertions, 2 deletions
diff --git a/utils/MTP/Makefile b/utils/MTP/Makefile
index dcae7d9ede..a395e652c1 100644
--- a/utils/MTP/Makefile
+++ b/utils/MTP/Makefile
@@ -11,7 +11,7 @@ $(OUTPUT): sendfirm.c
11 gcc $(EXTRA_CFLAGS) $(CFLAGS) -o $(OUTPUT) sendfirm.c $(LIBS) 11 gcc $(EXTRA_CFLAGS) $(CFLAGS) -o $(OUTPUT) sendfirm.c $(LIBS)
12 12
13$(OUTPUT).exe: sendfirm_win.c 13$(OUTPUT).exe: sendfirm_win.c
14 mingw32-gcc $(CFLAGS) -o $(OUTPUT).exe sendfirm_win.c MTP_DLL.dll 14 i686-w64-mingw32-gcc $(CFLAGS) -o $(OUTPUT).exe sendfirm_win.c MTP_DLL.dll
15 15
16clean: 16clean:
17 rm -f $(OUTPUT) 17 rm -f $(OUTPUT) $(OUTPUT).exe
diff --git a/utils/MTP/sendfirm.c b/utils/MTP/sendfirm.c
index 5fe970797e..f06f183e02 100644
--- a/utils/MTP/sendfirm.c
+++ b/utils/MTP/sendfirm.c
@@ -26,6 +26,7 @@
26#define _LARGEFILE_SOURCE 26#define _LARGEFILE_SOURCE
27#define _LARGEFILE64_SOURCE 27#define _LARGEFILE64_SOURCE
28 28
29#include <stdlib.h>
29#include <string.h> 30#include <string.h>
30#include <libgen.h> 31#include <libgen.h>
31#include <sys/stat.h> 32#include <sys/stat.h>