diff options
author | Fujii Masao <fujii@postgresql.org> | 2019-04-25 23:43:48 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2019-04-25 23:43:48 +0900 |
commit | 978b032d1f39fcfe9b7e895ab313913d97db2268 (patch) | |
tree | 4b0c810e249c3369f8b3bd7daa515e5e45e4c1a2 /src/backend/postmaster/checkpointer.c | |
parent | 87259588d0ab0b8e742e30596afa7ae25caadb18 (diff) |
Fix function names in comments.
Commit 3eb77eba5a renamed some functions, but forgot to
update some comments referencing to those functions.
This commit fixes those function names in the comments.
Kyotaro Horiguchi
Diffstat (limited to 'src/backend/postmaster/checkpointer.c')
-rw-r--r-- | src/backend/postmaster/checkpointer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/checkpointer.c b/src/backend/postmaster/checkpointer.c index a1e04239ad0..13f152b4731 100644 --- a/src/backend/postmaster/checkpointer.c +++ b/src/backend/postmaster/checkpointer.c @@ -137,7 +137,7 @@ typedef struct static CheckpointerShmemStruct *CheckpointerShmem; -/* interval for calling AbsorbFsyncRequests in CheckpointWriteDelay */ +/* interval for calling AbsorbSyncRequests in CheckpointWriteDelay */ #define WRITES_PER_ABSORB 1000 /* |