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 ebb7902 commit 24c58f7Copy full SHA for 24c58f7
src/backend/storage/ipc/latch.c
@@ -690,7 +690,7 @@ CreateWaitEventSet(MemoryContext context, int nevents)
690
* Use MAXALIGN size/alignment to guarantee that later uses of memory are
691
* aligned correctly. E.g. epoll_event might need 8 byte alignment on some
692
* platforms, but earlier allocations like WaitEventSet and WaitEvent
693
- * might not sized to guarantee that when purely using sizeof().
+ * might not be sized to guarantee that when purely using sizeof().
694
*/
695
sz += MAXALIGN(sizeof(WaitEventSet));
696
sz += MAXALIGN(sizeof(WaitEvent) * nevents);
0 commit comments