diff options
author | 2014-10-13 02:46:14 +0000 | |
---|---|---|
committer | 2014-10-13 02:46:14 +0000 | |
commit | d220e929976b9b071cf8df9406c41809e306eb86 (patch) | |
tree | c010624459f555986306647cbfe38a99b248e770 /usr.bin/openssl/ecparam.c | |
parent | Use O_NONBLOCK over FIONBIO. (diff) | |
download | wireguard-openbsd-d220e929976b9b071cf8df9406c41809e306eb86.tar.xz wireguard-openbsd-d220e929976b9b071cf8df9406c41809e306eb86.zip |
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@
Diffstat (limited to 'usr.bin/openssl/ecparam.c')
-rw-r--r-- | usr.bin/openssl/ecparam.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/openssl/ecparam.c b/usr.bin/openssl/ecparam.c index 7336360b350..b4d65ad2e5f 100644 --- a/usr.bin/openssl/ecparam.c +++ b/usr.bin/openssl/ecparam.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecparam.c,v 1.3 2014/09/01 14:26:01 jsing Exp $ */ +/* $OpenBSD: ecparam.c,v 1.4 2014/10/13 02:46:14 bcook Exp $ */ /* * Written by Nils Larsch for the OpenSSL project. */ @@ -245,7 +245,7 @@ struct option ecparam_options[] = { .type = OPTION_FLAG, .opt.flag = &ecparam_config.text, }, - {}, + {NULL}, }; static void |