From 5370de00d1cbbce4a065df309335d51d0ba4af05 Mon Sep 17 00:00:00 2001
From: tb <>
Date: Sat, 24 Aug 2024 12:08:49 +0000
Subject: conf_def.c: add two trailing commas

---
 src/lib/libcrypto/conf/conf_def.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/lib/libcrypto/conf/conf_def.c b/src/lib/libcrypto/conf/conf_def.c
index de1212ad37..ef762b88e7 100644
--- a/src/lib/libcrypto/conf/conf_def.c
+++ b/src/lib/libcrypto/conf/conf_def.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf_def.c,v 1.35 2024/08/18 17:50:10 tb Exp $ */
+/* $OpenBSD: conf_def.c,v 1.36 2024/08/24 12:08:49 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -658,7 +658,7 @@ static CONF_METHOD default_method = {
 	.dump = def_dump,
 	.is_number = def_is_number,
 	.to_int = def_to_int,
-	.load = def_load
+	.load = def_load,
 };
 
 static CONF_METHOD WIN32_method = {
@@ -671,7 +671,7 @@ static CONF_METHOD WIN32_method = {
 	def_dump,
 	def_is_number,
 	def_to_int,
-	def_load
+	def_load,
 };
 
 CONF_METHOD *
-- 
cgit v1.2.3-55-g6feb