diff options
author | Mattias Andrée <m@maandree.se> | 2024-10-14 15:42:25 +0200 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2024-10-14 15:42:25 +0200 |
commit | 859fa2cd657b44f2bc2f3bde625ac6f6298b29a2 (patch) | |
tree | 5394fa8da6ff7a8c310412e8739a9bb232d1c799 /process.c | |
parent | Update e-mail (diff) | |
download | libsha1-859fa2cd657b44f2bc2f3bde625ac6f6298b29a2.tar.gz libsha1-859fa2cd657b44f2bc2f3bde625ac6f6298b29a2.tar.bz2 libsha1-859fa2cd657b44f2bc2f3bde625ac6f6298b29a2.tar.xz |
Fix whitespace
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'process.c')
-rw-r--r-- | process.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -273,14 +273,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; |