The branch main has been updated by imp:

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

commit fb3dc55a5c22a619686ce667bcbe8a4c84a3ce34
Author:     rilysh <[email protected]>
AuthorDate: 2024-02-03 00:38:13 +0000
Commit:     Warner Losh <[email protected]>
CommitDate: 2024-02-03 01:35:02 +0000

    lib/libfetch/common.c: remove an extra semicolon
    
    Signed-off-by: rilysh <[email protected]>
    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;

Reply via email to