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 d9cede2 commit d85f2bfCopy full SHA for d85f2bf
src/backend/storage/ipc/latch.c
@@ -570,7 +570,7 @@ CreateWaitEventSet(MemoryContext context, int nevents)
570
* Use MAXALIGN size/alignment to guarantee that later uses of memory are
571
* aligned correctly. E.g. epoll_event might need 8 byte alignment on some
572
* platforms, but earlier allocations like WaitEventSet and WaitEvent
573
- * might not sized to guarantee that when purely using sizeof().
+ * might not be sized to guarantee that when purely using sizeof().
574
*/
575
sz += MAXALIGN(sizeof(WaitEventSet));
576
sz += MAXALIGN(sizeof(WaitEvent) * nevents);
0 commit comments