From 26d543d484be38ca415a318c4277086ab9b00316 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Wed, 6 Mar 2013 22:59:05 +0000 Subject: [PATCH] __unused is a FreeBSDism, use OPENPAM_UNUSED(). git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@657 185d5e19-27fe-0310-9dcf-9bff6b9f3609 --- t/t.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t.h b/t/t.h index 2344966..20d151f 100644 --- a/t/t.h +++ b/t/t.h @@ -44,7 +44,7 @@ struct t_test { static int t_ ## n ## _func(void *); \ static const struct t_test t_ ## n = \ { t_ ## n ## _func, d, NULL }; \ - static int t_ ## n ## _func(void *arg __unused) + static int t_ ## n ## _func(OPENPAM_UNUSED(void *arg)) #define T_FUNC_ARG(n, d, a) \ static int t_ ## n ## _func(void *); \