Skip to content

Commit 09b6846

Browse files
author
Etsuro Fujita
committed
Fix typo in comment.
1 parent 01f2bc5 commit 09b6846

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/storage/ipc/latch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ CreateWaitEventSet(MemoryContext context, int nevents)
549549
* Use MAXALIGN size/alignment to guarantee that later uses of memory are
550550
* aligned correctly. E.g. epoll_event might need 8 byte alignment on some
551551
* platforms, but earlier allocations like WaitEventSet and WaitEvent
552-
* might not sized to guarantee that when purely using sizeof().
552+
* might not be sized to guarantee that when purely using sizeof().
553553
*/
554554
sz += MAXALIGN(sizeof(WaitEventSet));
555555
sz += MAXALIGN(sizeof(WaitEvent) * nevents);

0 commit comments

Comments
 (0)