diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-10-01 03:07:22 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-10-01 03:07:22 +0200 |
commit | 4a0eb0370c4df8ee01973b50bb460560532b79f1 (patch) | |
tree | ce2324f97b05ae50355961d47dea6cd003a4fc05 /include | |
parent | aaa0709e7b39d0dc22ac92443a86c84eaff58679 (diff) | |
download | busybox-w32-4a0eb0370c4df8ee01973b50bb460560532b79f1.tar.gz busybox-w32-4a0eb0370c4df8ee01973b50bb460560532b79f1.tar.bz2 busybox-w32-4a0eb0370c4df8ee01973b50bb460560532b79f1.zip |
gcc-9.x warning fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index df7e45404..3e23b5bbd 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -818,7 +818,7 @@ ssize_t recv_from_to(int fd, void *buf, size_t len, int flags, | |||
818 | struct sockaddr *to, | 818 | struct sockaddr *to, |
819 | socklen_t sa_size) FAST_FUNC; | 819 | socklen_t sa_size) FAST_FUNC; |
820 | 820 | ||
821 | uint16_t inet_cksum(uint16_t *addr, int len) FAST_FUNC; | 821 | uint16_t inet_cksum(const void *addr, int len) FAST_FUNC; |
822 | int parse_pasv_epsv(char *buf) FAST_FUNC; | 822 | int parse_pasv_epsv(char *buf) FAST_FUNC; |
823 | 823 | ||
824 | /* 0 if argv[0] is NULL: */ | 824 | /* 0 if argv[0] is NULL: */ |