git: fb3dc55a5c22 - main - lib/libfetch/common.c: remove an extra semicolon

From: Warner Losh <imp_at_FreeBSD.org>
Date: Sat, 03 Feb 2024 01:36:44 UTC
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=fb3dc55a5c22a619686ce667bcbe8a4c84a3ce34

commit fb3dc55a5c22a619686ce667bcbe8a4c84a3ce34
Author:     rilysh <nightquick@proton.me>
AuthorDate: 2024-02-03 00:38:13 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-02-03 01:35:02 +0000

    lib/libfetch/common.c: remove an extra semicolon
    
    Signed-off-by: rilysh <nightquick@proton.me>
    Reviewed by: imp
    Pull Request: https://github.com/freebsd/freebsd-src/pull/959
---
 lib/libfetch/common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/libfetch/common.c b/lib/libfetch/common.c
index 4191ee4ed8b7..0d85ed468284 100644
--- a/lib/libfetch/common.c
+++ b/lib/libfetch/common.c
@@ -1356,7 +1356,7 @@ fetch_read(conn_t *conn, char *buf, size_t len)
 			}
 			timersub(&timeout, &now, &delta);
 			deltams = delta.tv_sec * 1000 +
-			    delta.tv_usec / 1000;;
+			    delta.tv_usec / 1000;
 		}
 		errno = 0;
 		pfd.revents = 0;