header_verbose_list: stop truncating file size in listing
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c
index 739a441..a842401 100644
--- a/networking/ftpgetput.c
+++ b/networking/ftpgetput.c
@@ -149,7 +149,7 @@
 	}
 
 	if (do_continue) {
-		sprintf(buf, "REST %"OFF_FMT, beg_range);
+		sprintf(buf, "REST %"OFF_FMT"d", beg_range);
 		if (ftpcmd(buf, NULL, control_stream, buf) != 350) {
 			do_continue = 0;
 		} else {