From d0affffc5c93236e87688b0ba021c39261830bb8 Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 26 Dec 2024 23:55:21 +0000 Subject: [PATCH] ftpfs.c: remove unused variable "range" --- ftpfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftpfs.c b/ftpfs.c index 03dc93b..88bad7e 100644 --- a/ftpfs.c +++ b/ftpfs.c @@ -525,7 +525,7 @@ int write_thread_ctr = 0; static void *ftpfs_write_thread(void *data) { struct ftpfs_file *fh = data; - char range[15]; + //char range[15]; DEBUG(2, "enter streaming write thread #%d path=%s pos=%ld\n", ++write_thread_ctr, fh->full_path, fh->pos);