From 0dcf90d37015e94e560e71431735595427be713b Mon Sep 17 00:00:00 2001 From: bcook <> Date: Mon, 13 Oct 2014 02:46:14 +0000 Subject: prefer C99 array initialization syntax. use C99 array initialization syntax for strict C compilers. from kinichiro, found building with HP/UX compiler ok deraadt@, guenther@ --- src/usr.bin/openssl/version.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/usr.bin/openssl/version.c') diff --git a/src/usr.bin/openssl/version.c b/src/usr.bin/openssl/version.c index ee4792b249..db9c98e977 100644 --- a/src/usr.bin/openssl/version.c +++ b/src/usr.bin/openssl/version.c @@ -1,4 +1,4 @@ -/* $OpenBSD: version.c,v 1.2 2014/08/30 15:59:43 jsing Exp $ */ +/* $OpenBSD: version.c,v 1.3 2014/10/13 02:46:14 bcook Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -200,7 +200,7 @@ static struct option version_options[] = { .type = OPTION_FLAG, .opt.flag = &version_config.version, }, - {}, + {NULL}, }; static void -- cgit v1.2.3-55-g6feb