From 61963332dde77cc8f654e2271feba88479811437 Mon Sep 17 00:00:00 2001 From: mvs Date: Tue, 13 Jul 2021 17:50:19 +0000 Subject: [PATCH] Fix TIMEOUT_INITIALIZER_{FLAGS,KCLOCK}() macro. ok cheloha@ --- sys/sys/timeout.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/sys/timeout.h b/sys/sys/timeout.h index d5dea082e7a..073756420a9 100644 --- a/sys/sys/timeout.h +++ b/sys/sys/timeout.h @@ -1,4 +1,4 @@ -/* $OpenBSD: timeout.h,v 1.42 2021/06/19 02:05:33 cheloha Exp $ */ +/* $OpenBSD: timeout.h,v 1.43 2021/07/13 17:50:19 mvs Exp $ */ /* * Copyright (c) 2000-2001 Artur Grabowski * All rights reserved. @@ -99,10 +99,10 @@ int timeout_sysctl(void *, size_t *, void *, size_t); } #define TIMEOUT_INITIALIZER_KCLOCK(_fn, _arg, _kclock, _flags) \ - __TIMEOUT_INITIALIZER((_fn), (_args), (_kclock), (_flags) | TIMEOUT_KCLOCK) + __TIMEOUT_INITIALIZER((_fn), (_arg), (_kclock), (_flags) | TIMEOUT_KCLOCK) #define TIMEOUT_INITIALIZER_FLAGS(_fn, _arg, _flags) \ - __TIMEOUT_INITIALIZER((_fn), (_args), KCLOCK_NONE, (_flags)) + __TIMEOUT_INITIALIZER((_fn), (_arg), KCLOCK_NONE, (_flags)) #define TIMEOUT_INITIALIZER(_f, _a) \ __TIMEOUT_INITIALIZER((_f), (_a), KCLOCK_NONE, 0) -- 2.20.1