diff options
author | 2021-02-21 15:56:25 +0000 | |
---|---|---|
committer | 2021-02-21 15:56:25 +0000 | |
commit | 02f127ebde62f11cbf55ed1d7083477d5f1d34db (patch) | |
tree | 6d6096b7b17b80a0084396a21f7f9a51d2d4b75f | |
parent | Add cryptox(4), a driver for armv8 cryptographic extensions. (diff) | |
download | wireguard-openbsd-02f127ebde62f11cbf55ed1d7083477d5f1d34db.tar.xz wireguard-openbsd-02f127ebde62f11cbf55ed1d7083477d5f1d34db.zip |
how about sticking to standard C.
-rw-r--r-- | sys/net/toeplitz.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/toeplitz.h b/sys/net/toeplitz.h index a0b469ad482..9f21fd35389 100644 --- a/sys/net/toeplitz.h +++ b/sys/net/toeplitz.h @@ -1,4 +1,4 @@ -/* $OpenBSD: toeplitz.h,v 1.4 2021/02/21 02:37:38 dlg Exp $ */ +/* $OpenBSD: toeplitz.h,v 1.5 2021/02/21 15:56:25 deraadt Exp $ */ /* * Copyright (c) 2019 David Gwynne <dlg@openbsd.org> @@ -54,7 +54,7 @@ uint16_t stoeplitz_hash_ip6port(const struct stoeplitz_cache *, #endif uint16_t stoeplitz_hash_eaddr(const struct stoeplitz_cache *, - const uint8_t [static 6]); + const uint8_t []); /* hash a uint16_t in network byte order */ static __unused inline uint16_t |