From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yb1-xb30.google.com (mail-yb1-xb30.google.com [IPv6:2607:f8b0:4864:20::b30]) by sourceware.org (Postfix) with ESMTPS id 022673959E4E for ; Wed, 2 Jun 2021 09:45:31 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 022673959E4E Received: by mail-yb1-xb30.google.com with SMTP id p184so2925811yba.11 for ; Wed, 02 Jun 2021 02:45:30 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=272flEx1WWGAwExqDeOowT42Je+XLrxWmZM9binsfEA=; b=EhVZkrO7mYWIFRk5ZWAGVe6atPAXS0L3LY9TZn/q06L4wRF9SoTPU53LojEzJJGO1l BLXFhg/aSuxZ7GkTmAL8Gu0oeNbVySPPaj325zSYPdWyg0Py+xAUJI5A4VXMpk3X6dBW SJVBjiZLQaWr5bWrAw6y6vdaST5FKqFmt+O3VMpPmCnCQalUw6r/XE5MGQnBXBYr4LAz 6jis1C/dYsguXFvC3v/RFly2xh/lQedvinozwg3cl2WRdwtc465uFVYEmdnqrOZbftkb w9FupqBa18CO4Xj4kxpx+v7rbvd36ygo4hncuXQMzvJSSKr4z1rhKGVH7O8Tvw81GGIR jG9A== X-Gm-Message-State: AOAM533MKIYlVINysI+jdDDAWhLwPayZiME0llk6oq0pLEA1J5HJZXo4 DHHXGHZA3uFkIM4DnfN1R6q7V5gA7J0KyARTVEDCq/2Odec= X-Google-Smtp-Source: ABdhPJylD8iYhS0IXrDhjl8ZXfQlehEjrWLRwm4Ppliakiabt7N1h3dVMnlbNDN6u5ot3jVLoNeQi9Tm4Fp5cDKUBZg= X-Received: by 2002:a25:888b:: with SMTP id d11mr47952251ybl.385.1622627130555; Wed, 02 Jun 2021 02:45:30 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Xeonacid Date: Wed, 2 Jun 2021 17:45:18 +0800 Message-ID: Subject: Re: [PATCH] fix typo To: libc-alpha@sourceware.org Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-8.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, FROM_LOCAL_NOVOWEL, GIT_PATCH_0, HK_RANDOM_ENVFROM, HK_RANDOM_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jun 2021 09:45:41 -0000 Oh no... My mailer seems to cut it again... I checked before sending but it did again... I will try to use another mailer. Sorry for the inconvenience... On Wed, Jun 2, 2021 at 5:43 PM Xeonacid wrote: > > "accomodate" should be "accommodate" > --- > malloc/malloc.c | 2 +- > manual/summary.pl | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/malloc/malloc.c b/malloc/malloc.c > index e2d7b1b583..0e2e1747e0 100644 > --- a/malloc/malloc.c > +++ b/malloc/malloc.c > @@ -1477,7 +1477,7 @@ checked_request2size (size_t req, size_t *sz) > __nonnull (1) > chunksize (p) - CHUNK_HDR_SZ : \ > chunksize (p) - CHUNK_HDR_SZ + (chunk_is_mmapped (p) ? 0 : SIZE_SZ)) > > -/* If memory tagging is enabled the layout changes to accomodate the granule > +/* If memory tagging is enabled the layout changes to accommodate the granule > size, this is wasteful for small allocations so not done by default. > Both the chunk header and user data has to be granule aligned. */ > _Static_assert (__MTAG_GRANULE_SIZE <= CHUNK_HDR_SZ, > diff --git a/manual/summary.pl b/manual/summary.pl > index 4319c56415..ab0801b045 100755 > --- a/manual/summary.pl > +++ b/manual/summary.pl > @@ -374,7 +374,7 @@ outside @*x lists ("Misplaced @standardsx"). > "Spurious @standardsx" > refers to otherwise valid @standardsx macros that were not matched to > an element in an @*x list. "Invalid syntax" means just that. > > -The syntax of @standards annotations is designed to accomodate > +The syntax of @standards annotations is designed to accommodate > multiple header and standards annotations, as necessary. > > Examples: > -- > 2.31.1