]> git.ipfire.org Git - thirdparty/wireguard-tools.git/commit
c: specify static array size in function params
authorJason A. Donenfeld <Jason@zx2c4.com>
Wed, 27 Jul 2016 09:30:05 +0000 (11:30 +0200)
committerJason A. Donenfeld <Jason@zx2c4.com>
Tue, 2 Aug 2016 00:55:42 +0000 (02:55 +0200)
commit1b9a83c852d40d0c11ea963520825a205e0d9ae2
tree5bcf4f079deeee2aa2c469ef1bd05f0dc9ab2243
parentd6b3bc69483e6e49961d2cae52d0d0adf219c88b
c: specify static array size in function params

The C standard states:

  A declaration of a parameter as ``array of type'' shall be adjusted to ``qualified pointer to
  type'', where the type qualifiers (if any) are those specified within the [ and ] of the
  array type derivation. If the keyword static also appears within the [ and ] of the
  array type derivation, then for each call to the function, the value of the corresponding
  actual argument shall provide access to the first element of an array with at least as many
  elements as specified by the size expression.

By changing void func(int array[4]) to void func(int array[static 4]),
we automatically get the compiler checking argument sizes for us, which
is quite nice.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
src/config.c
src/curve25519.c
src/curve25519.h
src/show.c