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 /include | |
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 'include')
-rw-r--r-- | include/mingw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h index 196356288..b32ee43b0 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -234,7 +234,7 @@ int ioctl(int fd, int code, ...); | |||
234 | #define SHUT_WR SD_SEND | 234 | #define SHUT_WR SD_SEND |
235 | 235 | ||
236 | int mingw_socket(int domain, int type, int protocol); | 236 | int mingw_socket(int domain, int type, int protocol); |
237 | int mingw_connect(int sockfd, struct sockaddr *sa, size_t sz); | 237 | int mingw_connect(int sockfd, const struct sockaddr *sa, size_t sz); |
238 | int mingw_bind(int sockfd, struct sockaddr *sa, size_t sz); | 238 | int mingw_bind(int sockfd, struct sockaddr *sa, size_t sz); |
239 | int mingw_setsockopt(int sockfd, int lvl, int optname, void *optval, int optlen); | 239 | int mingw_setsockopt(int sockfd, int lvl, int optname, void *optval, int optlen); |
240 | int mingw_shutdown(int sockfd, int how); | 240 | int mingw_shutdown(int sockfd, int how); |