Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Feb 2024 01:36:44 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: fb3dc55a5c22 - main - lib/libfetch/common.c: remove an extra semicolon
Message-ID:  <202402030136.4131ai7L011642@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202402030136.4131ai7L011642>