git: dabbbebcb0f5 - main - linuxkpi: fix buildkernel after b80ea452375f
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 18 Aug 2023 05:13:27 UTC
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); }