From 2a41ec6c6304a5101cf3ee898335fee7efc76b22 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 20 Jun 2003 09:22:12 +0000 Subject: use an explicit cast on some types that change size when large file support is enabled. --- networking/ftpgetput.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c index 394389043..41f45414a 100644 --- a/networking/ftpgetput.c +++ b/networking/ftpgetput.c @@ -187,7 +187,7 @@ static int ftp_recieve(FILE *control_stream, const char *host, const char *local } if (do_continue) { - sprintf(buf, "REST %ld", beg_range); + sprintf(buf, "REST %ld", (long)beg_range); if (ftpcmd(buf, NULL, control_stream, buf) != 350) { do_continue = 0; } else { @@ -245,7 +245,7 @@ static int ftp_send(FILE *control_stream, const char *host, const char *server_p fd_local = bb_xopen(local_path, O_RDONLY); fstat(fd_local, &sbuf); - sprintf(buf, "ALLO %lu", sbuf.st_size); + sprintf(buf, "ALLO %lu", (unsigned long)sbuf.st_size); response = ftpcmd(buf, NULL, control_stream, buf); switch (response) { case 200: -- cgit v1.2.3