diff options
author | Mattias Andrée <m@maandree.se> | 2024-10-14 15:42:33 +0200 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2024-10-14 15:42:33 +0200 |
commit | fdd66d4d0e0a48bc2b2430b07948ef42bc64e7db (patch) | |
tree | 2e5a638e5727c80a9e1251d757b17b2b5636dbc3 /process.c | |
parent | Update e-mail (diff) | |
download | libsha2-fdd66d4d0e0a48bc2b2430b07948ef42bc64e7db.tar.gz libsha2-fdd66d4d0e0a48bc2b2430b07948ef42bc64e7db.tar.bz2 libsha2-fdd66d4d0e0a48bc2b2430b07948ef42bc64e7db.tar.xz |
Fix whitespace
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-rw-r--r-- | process.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -256,14 +256,14 @@ __attribute__((__constructor__)) static int have_sha_intrinsics(void) { - static volatile int ret = -1; - static volatile atomic_flag spinlock = ATOMIC_FLAG_INIT; + static volatile int ret = -1; + static volatile atomic_flag spinlock = ATOMIC_FLAG_INIT; int a, b, c, d; if (ret != -1) return ret; - while (atomic_flag_test_and_set(&spinlock)); + while (atomic_flag_test_and_set(&spinlock)); if (ret != -1) goto out; |