Skip to content

Commit d89f97e

Browse files
author
Etsuro Fujita
committed
Fix typo in comment.
1 parent ed57cac commit d89f97e

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
@@ -689,7 +689,7 @@ CreateWaitEventSet(MemoryContext context, int nevents)
689689
* Use MAXALIGN size/alignment to guarantee that later uses of memory are
690690
* aligned correctly. E.g. epoll_event might need 8 byte alignment on some
691691
* platforms, but earlier allocations like WaitEventSet and WaitEvent
692-
* might not sized to guarantee that when purely using sizeof().
692+
* might not be sized to guarantee that when purely using sizeof().
693693
*/
694694
sz += MAXALIGN(sizeof(WaitEventSet));
695695
sz += MAXALIGN(sizeof(WaitEvent) * nevents);

0 commit comments

Comments
 (0)