aboutsummaryrefslogtreecommitdiff
path: root/src/port/pg_bitutils.c
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2019-06-14 09:34:34 +0900
committerMichael Paquier <michael@paquier.xyz>2019-06-14 09:34:34 +0900
commitf43608bda2111a1fda514d1bed4df313ee2bbec3 (patch)
tree44053966966203e04eadc3bdb6377a36fb056fe1 /src/port/pg_bitutils.c
parent96719e52b1abd3a8c712d06a809b7e6c97c2e3a0 (diff)
downloadpostgresql-f43608bda2111a1fda514d1bed4df313ee2bbec3.tar.gz
postgresql-f43608bda2111a1fda514d1bed4df313ee2bbec3.zip
Fix typos and inconsistencies in code comments
Author: Alexander Lakhin Discussion: https://postgr.es/m/dec6aae8-2d63-639f-4d50-20e229fb83e3@gmail.com
Diffstat (limited to 'src/port/pg_bitutils.c')
-rw-r--r--src/port/pg_bitutils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/pg_bitutils.c b/src/port/pg_bitutils.c
index 60fb55af539..7847e8a451c 100644
--- a/src/port/pg_bitutils.c
+++ b/src/port/pg_bitutils.c
@@ -28,7 +28,7 @@
* left-most the 7th bit. The 0th entry of the array should not be used.
*
* Note: this is not used by the functions in pg_bitutils.h when
- * HAVE_BUILTIN_CLZ is defined, but we provide it anyway, so that
+ * HAVE__BUILTIN_CLZ is defined, but we provide it anyway, so that
* extensions possibly compiled with a different compiler can use it.
*/
const uint8 pg_leftmost_one_pos[256] = {
@@ -56,7 +56,7 @@ const uint8 pg_leftmost_one_pos[256] = {
* left-most the 7th bit. The 0th entry of the array should not be used.
*
* Note: this is not used by the functions in pg_bitutils.h when
- * HAVE_BUILTIN_CTZ is defined, but we provide it anyway, so that
+ * HAVE__BUILTIN_CTZ is defined, but we provide it anyway, so that
* extensions possibly compiled with a different compiler can use it.
*/
const uint8 pg_rightmost_one_pos[256] = {