From: Etsuro Fujita Date: Mon, 2 May 2022 07:45:02 +0000 (+0900) Subject: Fix typo in comment. X-Git-Tag: REL_14_3~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=24c58f7a2a5c762f35ffe8aaa00fa08caeb881fe;p=thirdparty%2Fpostgresql.git Fix typo in comment. --- diff --git a/src/backend/storage/ipc/latch.c b/src/backend/storage/ipc/latch.c index 6ff1ecbe098..5076a866937 100644 --- a/src/backend/storage/ipc/latch.c +++ b/src/backend/storage/ipc/latch.c @@ -690,7 +690,7 @@ CreateWaitEventSet(MemoryContext context, int nevents) * Use MAXALIGN size/alignment to guarantee that later uses of memory are * aligned correctly. E.g. epoll_event might need 8 byte alignment on some * platforms, but earlier allocations like WaitEventSet and WaitEvent - * might not sized to guarantee that when purely using sizeof(). + * might not be sized to guarantee that when purely using sizeof(). */ sz += MAXALIGN(sizeof(WaitEventSet)); sz += MAXALIGN(sizeof(WaitEvent) * nevents);