Skip to content

Commit 8caf262

Browse files
committed
Fix typo
1 parent 568995b commit 8caf262

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

config/c-compiler.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ AC_DEFUN([PGAC_HAVE_GCC__ATOMIC_INT64_CAS],
492492
[pgac_cv_gcc_atomic_int64_cas="yes"],
493493
[pgac_cv_gcc_atomic_int64_cas="no"])])
494494
if test x"$pgac_cv_gcc_atomic_int64_cas" = x"yes"; then
495-
AC_DEFINE(HAVE_GCC__ATOMIC_INT64_CAS, 1, [Define to 1 if you have __atomic_compare_exchange_n(int64 *, int *, int64).])
495+
AC_DEFINE(HAVE_GCC__ATOMIC_INT64_CAS, 1, [Define to 1 if you have __atomic_compare_exchange_n(int64 *, int64 *, int64).])
496496
fi])# PGAC_HAVE_GCC__ATOMIC_INT64_CAS
497497

498498
# PGAC_SSE42_CRC32_INTRINSICS

src/include/pg_config.h.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@
202202
/* Define to 1 if you have __atomic_compare_exchange_n(int *, int *, int). */
203203
#undef HAVE_GCC__ATOMIC_INT32_CAS
204204

205-
/* Define to 1 if you have __atomic_compare_exchange_n(int64 *, int *, int64).
206-
*/
205+
/* Define to 1 if you have __atomic_compare_exchange_n(int64 *, int64 *,
206+
int64). */
207207
#undef HAVE_GCC__ATOMIC_INT64_CAS
208208

209209
/* Define to 1 if you have __sync_lock_test_and_set(char *) and friends. */

0 commit comments

Comments
 (0)