Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 18 Aug 2023 05:13:27 GMT
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: dabbbebcb0f5 - main - linuxkpi: fix buildkernel after b80ea452375f
Message-ID:  <202308180513.37I5DR65015777@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kevans:

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

commit dabbbebcb0f5ced163454cd08b78e551b4a365b5
Author:     Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2023-08-18 05:12:37 +0000
Commit:     Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2023-08-18 05:12:37 +0000

    linuxkpi: fix buildkernel after b80ea452375f
    
    Unbalanced parentheses broke the build; re-balance.
    
    Fixes:  b80ea452375f ("LinuxKPI: implement mul_u64_u64_div_u64()")
---
 sys/compat/linuxkpi/common/include/linux/math64.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/compat/linuxkpi/common/include/linux/math64.h b/sys/compat/linuxkpi/common/include/linux/math64.h
index e4ddce5b823e..df629a10af8a 100644
--- a/sys/compat/linuxkpi/common/include/linux/math64.h
+++ b/sys/compat/linuxkpi/common/include/linux/math64.h
@@ -149,7 +149,7 @@ mul_u64_u64_div_u64(uint64_t x, uint64_t y, uint64_t z)
 	    "x %ju * y %ju", __func__, (uintmax_t)res, (uintmax_t)z,
 	    (uintmax_t)rem, (uintmax_t)x, (uintmax_t)y));
 	KASSERT(rem < z, ("%s: rem %ju >= z %ju\n", __func__,
-	    (uintmax_t)rem, (uintmax_t)z);
+	    (uintmax_t)rem, (uintmax_t)z));
 
 	return (res);
 }



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