diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-07-10 11:14:53 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-07-10 11:14:53 +0200 |
commit | 1486f7f981c0052988891677d4e734b14317816c (patch) | |
tree | feb8314793128badfed3a786cf64a8f439ddcabd /src | |
parent | 8a00b96aa994b5c2c1a03c70e7a4719c919e8798 (diff) | |
download | postgresql-1486f7f981c0052988891677d4e734b14317816c.tar.gz postgresql-1486f7f981c0052988891677d4e734b14317816c.zip |
Fix typos
Diffstat (limited to 'src')
-rw-r--r-- | src/include/pg_config.h.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 87c1b863daa..dcb25bb7234 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -235,13 +235,14 @@ /* Define to 1 if you have __sync_lock_test_and_set(char *) and friends. */ #undef HAVE_GCC__SYNC_CHAR_TAS -/* Define to 1 if you have __sync_compare_and_swap(int *, int, int). */ +/* Define to 1 if you have __sync_val_compare_and_swap(int *, int, int). */ #undef HAVE_GCC__SYNC_INT32_CAS /* Define to 1 if you have __sync_lock_test_and_set(int *) and friends. */ #undef HAVE_GCC__SYNC_INT32_TAS -/* Define to 1 if you have __sync_compare_and_swap(int64 *, int64, int64). */ +/* Define to 1 if you have __sync_val_compare_and_swap(int64 *, int64, int64). + */ #undef HAVE_GCC__SYNC_INT64_CAS /* Define to 1 if you have the `getaddrinfo' function. */ |