aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2022-02-17 12:11:38 +0100
committerMattias Andrée <maandree@kth.se>2022-02-17 12:11:38 +0100
commit2f5c5efe85020c6fad216aba572251ce21c54428 (patch)
tree2ab9998856ed03eab5d5bf84cb0b01634d143d52
parentInitial work on optimising compression function; mm128 version is slower, mm256 version is barely faster (diff)
downloadlibblake-2f5c5efe85020c6fad216aba572251ce21c54428.tar.gz
libblake-2f5c5efe85020c6fad216aba572251ce21c54428.tar.bz2
libblake-2f5c5efe85020c6fad216aba572251ce21c54428.tar.xz
Fix typo
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--libblake_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libblake_init.c b/libblake_init.c
index ebf0e34..84dd87e 100644
--- a/libblake_init.c
+++ b/libblake_init.c
@@ -5,7 +5,7 @@
#if defined(__GNUC__)
__attribute__((__constructor__)) /* ignored if statically linked, so this function shall
* by the application, we just use the constructor (init)
- * attribute incase that is forgotten, as it will only
+ * attribute in case that is forgotten, as it will only
* improve performance, but the library with function
* perfectly fine even if it's not called */
#endif