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 58887d5 commit d6ae041Copy full SHA for d6ae041
src/backend/storage/ipc/latch.c
@@ -527,7 +527,7 @@ CreateWaitEventSet(MemoryContext context, int nevents)
527
* Use MAXALIGN size/alignment to guarantee that later uses of memory are
528
* aligned correctly. E.g. epoll_event might need 8 byte alignment on some
529
* platforms, but earlier allocations like WaitEventSet and WaitEvent
530
- * might not sized to guarantee that when purely using sizeof().
+ * might not be sized to guarantee that when purely using sizeof().
531
*/
532
sz += MAXALIGN(sizeof(WaitEventSet));
533
sz += MAXALIGN(sizeof(WaitEvent) * nevents);
0 commit comments