From b6c247c1d71c619310005d8cc8908f8d0110e947 Mon Sep 17 00:00:00 2001 From: tb Date: Sat, 24 Aug 2024 12:08:49 +0000 Subject: [PATCH] conf_def.c: add two trailing commas --- lib/libcrypto/conf/conf_def.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/libcrypto/conf/conf_def.c b/lib/libcrypto/conf/conf_def.c index de1212ad376..ef762b88e73 100644 --- a/lib/libcrypto/conf/conf_def.c +++ b/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 * -- 2.20.1