We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01f2bc5 commit 09b6846Copy full SHA for 09b6846
src/backend/storage/ipc/latch.c
@@ -549,7 +549,7 @@ CreateWaitEventSet(MemoryContext context, int nevents)
549
* Use MAXALIGN size/alignment to guarantee that later uses of memory are
550
* aligned correctly. E.g. epoll_event might need 8 byte alignment on some
551
* platforms, but earlier allocations like WaitEventSet and WaitEvent
552
- * might not sized to guarantee that when purely using sizeof().
+ * might not be sized to guarantee that when purely using sizeof().
553
*/
554
sz += MAXALIGN(sizeof(WaitEventSet));
555
sz += MAXALIGN(sizeof(WaitEvent) * nevents);
0 commit comments