diff options
author | Ron Yorston <rmy@pobox.com> | 2016-03-06 12:26:18 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2016-03-06 12:26:18 +0000 |
commit | 2762242f30d0d046a80abe41fd78415052bbe95f (patch) | |
tree | 62da74833d38b3cc3a1197e481a20b0c736d1779 /win32/mingw.c | |
parent | 23db91691674e8621870c382581999a61eb0d0bf (diff) | |
download | busybox-w32-2762242f30d0d046a80abe41fd78415052bbe95f.tar.gz busybox-w32-2762242f30d0d046a80abe41fd78415052bbe95f.tar.bz2 busybox-w32-2762242f30d0d046a80abe41fd78415052bbe95f.zip |
Silence a couple of compiler warnings
Diffstat (limited to 'win32/mingw.c')
-rw-r--r-- | win32/mingw.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/mingw.c b/win32/mingw.c index 01e7f072a..ebdcdee26 100644 --- a/win32/mingw.c +++ b/win32/mingw.c | |||
@@ -913,7 +913,8 @@ int mingw_access(const char *name, int mode) | |||
913 | { | 913 | { |
914 | int ret; | 914 | int ret; |
915 | struct stat s; | 915 | struct stat s; |
916 | int fd, n, offset, sig; | 916 | int fd, n, sig; |
917 | unsigned int offset; | ||
917 | unsigned char buf[1024]; | 918 | unsigned char buf[1024]; |
918 | 919 | ||
919 | /* Windows can only handle test for existence, read or write */ | 920 | /* Windows can only handle test for existence, read or write */ |