From 58b8518100c8b306d5b6a3d87b4a83a1ae383a09 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 6 Sep 2014 01:33:26 +0200 Subject: Move UNUSED attribute to the start of arguments to help editors understand the syntax --- src/crypto/cipher/null/memcpy/null_memcpy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/crypto') diff --git a/src/crypto/cipher/null/memcpy/null_memcpy.c b/src/crypto/cipher/null/memcpy/null_memcpy.c index 1ad5784..1f090ca 100644 --- a/src/crypto/cipher/null/memcpy/null_memcpy.c +++ b/src/crypto/cipher/null/memcpy/null_memcpy.c @@ -34,18 +34,18 @@ /** Doesn't do anything as the null cipher doesn't use any state */ -static fastd_cipher_state_t * null_init(const uint8_t *key UNUSED) { +static fastd_cipher_state_t * null_init(UNUSED const uint8_t *key) { return NULL; } /** Just copies the input data to the output */ -static bool null_memcpy(const fastd_cipher_state_t *state UNUSED, fastd_block128_t *out, const fastd_block128_t *in, size_t len, const uint8_t *iv UNUSED) { +static bool null_memcpy(UNUSED const fastd_cipher_state_t *state, fastd_block128_t *out, const fastd_block128_t *in, size_t len, UNUSED const uint8_t *iv) { memcpy(out, in, len); return true; } /** Doesn't do anything as the null cipher doesn't use any state */ -static void null_free(fastd_cipher_state_t *state UNUSED) { +static void null_free(UNUSED fastd_cipher_state_t *state) { } /** The memcpy null implementation */ -- cgit v1.2.3