git: 31508912d864 - main - uma: Apply a missed piece of review feedback from D35738

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Wed, 13 Jul 2022 13:30:46 UTC
The branch main has been updated by markj:

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

commit 31508912d864d12b7202e597ce71a48d834601a4
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-07-13 13:30:00 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2022-07-13 13:30:00 +0000

    uma: Apply a missed piece of review feedback from D35738
    
    Fixes:  93cd28ea82bb ("uma: Use a taskqueue to execute uma_timeout()")
---
 sys/vm/uma_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/vm/uma_core.c b/sys/vm/uma_core.c
index d2ccf10b0134..ba8e60e66f1f 100644
--- a/sys/vm/uma_core.c
+++ b/sys/vm/uma_core.c
@@ -1107,7 +1107,7 @@ zone_maxaction(uma_zone_t zone)
  *	Nothing
  */
 static void
-uma_timeout(void *unused __unused, int pending __unused)
+uma_timeout(void *context __unused, int pending __unused)
 {
 	bucket_enable();
 	zone_foreach(zone_timeout, NULL);