aboutsummaryrefslogtreecommitdiff
path: root/src/backend/storage/buffer/bufmgr.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2015-01-28 10:26:30 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2015-01-28 10:26:30 +0200
commitacc2b1e843ae04e97025880f33a82f326ab12d59 (patch)
tree733a765cd968525bdf690a9a0fbdf28a6df10eb9 /src/backend/storage/buffer/bufmgr.c
parent670bf71f65c2315fc2ea7265d540402093db8cef (diff)
downloadpostgresql-acc2b1e843ae04e97025880f33a82f326ab12d59.tar.gz
postgresql-acc2b1e843ae04e97025880f33a82f326ab12d59.zip
Fix typo in comment.
Diffstat (limited to 'src/backend/storage/buffer/bufmgr.c')
-rw-r--r--src/backend/storage/buffer/bufmgr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c
index 7eb2d22fa16..d208a7bee46 100644
--- a/src/backend/storage/buffer/bufmgr.c
+++ b/src/backend/storage/buffer/bufmgr.c
@@ -138,9 +138,9 @@ static inline int32 GetPrivateRefCount(Buffer buffer);
static void ForgetPrivateRefCountEntry(PrivateRefCountEntry *ref);
/*
- * Ensure that the the PrivateRefCountArray has sufficient space to store one
- * more entry. This has to be called before using NewPrivateRefCountEntry() to
- * fill a new entry - but it's perfectly fine to not use a reserved entry.
+ * Ensure that the PrivateRefCountArray has sufficient space to store one more
+ * entry. This has to be called before using NewPrivateRefCountEntry() to fill
+ * a new entry - but it's perfectly fine to not use a reserved entry.
*/
static void
ReservePrivateRefCountEntry(void)