diff options
Diffstat (limited to 'src/include/port/atomics/generic-gcc.h')
-rw-r--r-- | src/include/port/atomics/generic-gcc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/port/atomics/generic-gcc.h b/src/include/port/atomics/generic-gcc.h index c9fc87b30d9..591c9fe1eb3 100644 --- a/src/include/port/atomics/generic-gcc.h +++ b/src/include/port/atomics/generic-gcc.h @@ -117,7 +117,7 @@ typedef struct pg_atomic_uint64 static inline bool pg_atomic_test_set_flag_impl(volatile pg_atomic_flag *ptr) { - /* NB: only a acquire barrier, not a full one */ + /* NB: only an acquire barrier, not a full one */ /* some platform only support a 1 here */ return __sync_lock_test_and_set(&ptr->value, 1) == 0; } |