diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-10-30 10:03:00 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-10-30 10:03:00 +0900 |
commit | 6ca86bb7e9c72f428c7f4e3f2b48dd6c4084429c (patch) | |
tree | e06d7478c2cc96f89e0f6f00452bea8e0177b93e /src/backend/storage/buffer/bufmgr.c | |
parent | 517bf2d9107f0d45c5fea2e3904e8d3b10ce6bb2 (diff) | |
download | postgresql-6ca86bb7e9c72f428c7f4e3f2b48dd6c4084429c.tar.gz postgresql-6ca86bb7e9c72f428c7f4e3f2b48dd6c4084429c.zip |
Fix typos in the code
Author: Vignesh C
Reviewed-by: Dilip Kumar, Michael Paquier
Discussion: https://postgr.es/m/CALDaNm0ni+GAOe4+fbXiOxNrVudajMYmhJFtXGX-zBPoN8ixhw@mail.gmail.com
Diffstat (limited to 'src/backend/storage/buffer/bufmgr.c')
-rw-r--r-- | src/backend/storage/buffer/bufmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c index 483f705305c..7ad10736d5b 100644 --- a/src/backend/storage/buffer/bufmgr.c +++ b/src/backend/storage/buffer/bufmgr.c @@ -1208,7 +1208,7 @@ BufferAlloc(SMgrRelation smgr, char relpersistence, ForkNumber forkNum, LWLockAcquire(newPartitionLock, LW_EXCLUSIVE); /* remember we have no old-partition lock or tag */ oldPartitionLock = NULL; - /* this just keeps the compiler quiet about uninit variables */ + /* keep the compiler quiet about uninitialized variables */ oldHash = 0; } |