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:16:10 +0200 |
commit | 324c9554022d4403f34264598cb6e0a7d0d5873c (patch) | |
tree | 5c7e66fb4918b79baf5ed00a4eb5795c2eefebd9 /src | |
parent | 502120ccda205d8d2d9ad5dddac5a8a51fa8efb7 (diff) | |
download | postgresql-324c9554022d4403f34264598cb6e0a7d0d5873c.tar.gz postgresql-324c9554022d4403f34264598cb6e0a7d0d5873c.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 1a9b6034020..d1c81cba3fe 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -209,13 +209,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. */ |