diff options
author | Mattias Andrée <maandree@kth.se> | 2021-07-30 18:29:05 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-07-30 18:29:05 +0200 |
commit | 8af021382087293e2205eb15642346c6fdd30a59 (patch) | |
tree | 985a3f4217a55d2e6c46192d94a9ce94cee36ab2 /libkeccak_unhex.c | |
parent | Do not divide by sizeof(char) (diff) | |
download | libkeccak-8af021382087293e2205eb15642346c6fdd30a59.tar.gz libkeccak-8af021382087293e2205eb15642346c6fdd30a59.tar.bz2 libkeccak-8af021382087293e2205eb15642346c6fdd30a59.tar.xz |
Fix clang warnings
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libkeccak_unhex.c')
-rw-r--r-- | libkeccak_unhex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libkeccak_unhex.c b/libkeccak_unhex.c index 00bb039..26a6e7d 100644 --- a/libkeccak_unhex.c +++ b/libkeccak_unhex.c @@ -6,7 +6,7 @@ * Convert a hexadecimal hashsum (both lower case, upper * case and mixed is supported) to binary representation * - * @param output Output array, should have an allocation size of at least `strlen(hashsum) / 2` + * @param output_ Output array, should have an allocation size of at least `strlen(hashsum) / 2` * @param hashsum The hashsum to convert */ void |