From afff2246181e3d48adbeec7858470893fb55a210 Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Sat, 30 Dec 2023 15:25:45 +0900 Subject: [PATCH] dist: Fix typo in CRYPTO_AUDITING_BLOB_DATA definition in audit.h Signed-off-by: Daiki Ueno --- dist/audit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/audit.h b/dist/audit.h index 5c7c9e1..1906c2c 100644 --- a/dist/audit.h +++ b/dist/audit.h @@ -30,7 +30,7 @@ * NUL-terminated string, while the value is explicitly sized with * VALUE_SIZE */ -# define CRYPTO_AUDITING_BLOB_DATA(key_ptr, context, value_ptr, value_size) \ +# define CRYPTO_AUDITING_BLOB_DATA(context, key_ptr, value_ptr, value_size) \ DTRACE_PROBE4(crypto_auditing, blob_data, context, key_ptr, value_ptr, value_size) #else