git: 818aa9543de8 - main - makesyscalls: Fix expression for time_t_size
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 22 Nov 2021 22:37:44 UTC
The branch main has been updated by brooks: URL: https://cgit.FreeBSD.org/src/commit/?id=818aa9543de8c403f222d3174742186a36539fd4 commit 818aa9543de8c403f222d3174742186a36539fd4 Author: Brooks Davis <brooks@FreeBSD.org> AuthorDate: 2021-11-22 22:36:56 +0000 Commit: Brooks Davis <brooks@FreeBSD.org> CommitDate: 2021-11-22 22:36:56 +0000 makesyscalls: Fix expression for time_t_size Reviewed by: kevans --- sys/tools/makesyscalls.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/tools/makesyscalls.lua b/sys/tools/makesyscalls.lua index f34d34b89d94..1f646d64e2e4 100644 --- a/sys/tools/makesyscalls.lua +++ b/sys/tools/makesyscalls.lua @@ -134,7 +134,7 @@ local known_abi_flags = { }, time_t_size = { value = 0x00000002, - expr = "_Contains[a-z_]*_timet_/", + expr = "_Contains[a-z_]*_timet_", }, pointer_args = { value = 0x00000004,