public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] fix typo
@ 2021-06-02  9:56 Xeonacid
  2021-06-02 10:01 ` Paul Zimmermann
  0 siblings, 1 reply; 13+ messages in thread
From: Xeonacid @ 2021-06-02  9:56 UTC (permalink / raw)
  To: libc-alpha

[-- Attachment #1: Type: text/plain, Size: 1460 bytes --]

"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


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-fix-typo.patch --]
[-- Type: text/x-patch; name=0001-fix-typo.patch, Size: 1664 bytes --]

From 7098174c2b624185f2e0ba975adcab065efc7eeb Mon Sep 17 00:00:00 2001
From: Xeonacid <Xeonacid@protonmail.com>
Date: Tue, 1 Jun 2021 14:18:47 +0800
Subject: [PATCH] fix typo
To: libc-alpha@sourceware.org
Cc: Paul.Zimmermann@inria.fr

"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


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] fix typo
  2021-06-02  9:56 [PATCH] fix typo Xeonacid
@ 2021-06-02 10:01 ` Paul Zimmermann
  0 siblings, 0 replies; 13+ messages in thread
From: Paul Zimmermann @ 2021-06-02 10:01 UTC (permalink / raw)
  To: Xeonacid; +Cc: libc-alpha

LGTM, thanks.

Reviewed-by: Paul Zimmermann <Paul.Zimmermann@inria.fr>

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] fix typo
  2021-06-02 10:12 Xeonacid
@ 2021-06-02 10:16 ` Paul Zimmermann
  0 siblings, 0 replies; 13+ messages in thread
From: Paul Zimmermann @ 2021-06-02 10:16 UTC (permalink / raw)
  To: Xeonacid; +Cc: libc-alpha

LGTM, thanks (this one works).

Reviewed-by: Paul Zimmermann <Paul.Zimmermann@inria.fr>

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH] fix typo
@ 2021-06-02 10:12 Xeonacid
  2021-06-02 10:16 ` Paul Zimmermann
  0 siblings, 1 reply; 13+ messages in thread
From: Xeonacid @ 2021-06-02 10:12 UTC (permalink / raw)
  To: libc-alpha

"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



^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] fix typo
  2021-06-02  9:43 Xeonacid
@ 2021-06-02  9:45 ` Xeonacid
  0 siblings, 0 replies; 13+ messages in thread
From: Xeonacid @ 2021-06-02  9:45 UTC (permalink / raw)
  To: libc-alpha

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 <h.dwwwwww@gmail.com> 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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH] fix typo
@ 2021-06-02  9:43 Xeonacid
  2021-06-02  9:45 ` Xeonacid
  0 siblings, 1 reply; 13+ messages in thread
From: Xeonacid @ 2021-06-02  9:43 UTC (permalink / raw)
  To: libc-alpha

"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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] fix typo
  2021-06-02  9:27   ` Xeonacid
  2021-06-02  9:29     ` Xeonacid
@ 2021-06-02  9:30     ` Paul Zimmermann
  1 sibling, 0 replies; 13+ messages in thread
From: Paul Zimmermann @ 2021-06-02  9:30 UTC (permalink / raw)
  To: Xeonacid; +Cc: libc-alpha

LGTM, thanks.

Reviewed-by: Paul Zimmermann <Paul.Zimmermann@inria.fr>

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH] fix typo
@ 2021-06-02  9:29 Xeonacid
  0 siblings, 0 replies; 13+ messages in thread
From: Xeonacid @ 2021-06-02  9:29 UTC (permalink / raw)
  To: libc-alpha

"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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] fix typo
  2021-06-02  9:27   ` Xeonacid
@ 2021-06-02  9:29     ` Xeonacid
  2021-06-02  9:30     ` Paul Zimmermann
  1 sibling, 0 replies; 13+ messages in thread
From: Xeonacid @ 2021-06-02  9:29 UTC (permalink / raw)
  To: libc-alpha

Sorry that I've misused Reply. I'll send a new email soon.
Feel so sorry to bother you all again and again.

On Wed, Jun 2, 2021 at 5:27 PM Xeonacid <h.dwwwwww@gmail.com> 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

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH] fix typo
  2021-06-02  9:02 ` Paul Zimmermann
@ 2021-06-02  9:27   ` Xeonacid
  2021-06-02  9:29     ` Xeonacid
  2021-06-02  9:30     ` Paul Zimmermann
  0 siblings, 2 replies; 13+ messages in thread
From: Xeonacid @ 2021-06-02  9:27 UTC (permalink / raw)
  To: libc-alpha

[-- Attachment #1: Type: text/plain, Size: 1356 bytes --]

"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

[-- Attachment #2: 0001-fix-typo.patch --]
[-- Type: text/x-patch, Size: 1660 bytes --]

From bc2c8640eff6cd9a192080a50739d105b77d2d79 Mon Sep 17 00:00:00 2001
From: Xeonacid <h.dwwwwww@gmail.com>
Date: Tue, 1 Jun 2021 14:18:47 +0800
Subject: [PATCH] fix typo
To: libc-alpha@sourceware.org
Cc: Paul.Zimmermann@inria.fr

"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


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] fix typo
  2021-06-02  8:49 Xeonacid
  2021-06-02  8:55 ` Paul Zimmermann
@ 2021-06-02  9:02 ` Paul Zimmermann
  2021-06-02  9:27   ` Xeonacid
  1 sibling, 1 reply; 13+ messages in thread
From: Paul Zimmermann @ 2021-06-02  9:02 UTC (permalink / raw)
  To: Xeonacid; +Cc: libc-alpha

       Dear Xeonacid,

I'm afraid your message is still ill-formed. The body of the message should
not contain the following lines:

   From bc2c8640eff6cd9a192080a50739d105b77d2d79 Mon Sep 17 00:00:00 2001
   From: Xeonacid <h.dwwwwww@gmail.com>
   Date: Tue, 1 Jun 2021 14:18:47 +0800
   Subject: [PATCH] fix typo
   To: libc-alpha@sourceware.org
   Cc: Paul.Zimmermann@inria.fr

Compare https://sourceware.org/pipermail/libc-alpha/2021-June/127042.html
(your message)
and https://sourceware.org/pipermail/libc-alpha/2021-June/127029.html
for example.

Thank you for your patience,
Paul

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] fix typo
  2021-06-02  8:49 Xeonacid
@ 2021-06-02  8:55 ` Paul Zimmermann
  2021-06-02  9:02 ` Paul Zimmermann
  1 sibling, 0 replies; 13+ messages in thread
From: Paul Zimmermann @ 2021-06-02  8:55 UTC (permalink / raw)
  To: Xeonacid; +Cc: libc-alpha

LGTM.

Reviewed-by: Paul Zimmermann <Paul.Zimmermann@inria.fr>

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH] fix typo
@ 2021-06-02  8:49 Xeonacid
  2021-06-02  8:55 ` Paul Zimmermann
  2021-06-02  9:02 ` Paul Zimmermann
  0 siblings, 2 replies; 13+ messages in thread
From: Xeonacid @ 2021-06-02  8:49 UTC (permalink / raw)
  To: libc-alpha

[-- Attachment #1: Type: text/plain, Size: 1587 bytes --]

From bc2c8640eff6cd9a192080a50739d105b77d2d79 Mon Sep 17 00:00:00 2001
From: Xeonacid <h.dwwwwww@gmail.com>
Date: Tue, 1 Jun 2021 14:18:47 +0800
Subject: [PATCH] fix typo
To: libc-alpha@sourceware.org
Cc: Paul.Zimmermann@inria.fr

"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

[-- Attachment #2: 0001-fix-typo.patch --]
[-- Type: text/x-patch, Size: 1660 bytes --]

From bc2c8640eff6cd9a192080a50739d105b77d2d79 Mon Sep 17 00:00:00 2001
From: Xeonacid <h.dwwwwww@gmail.com>
Date: Tue, 1 Jun 2021 14:18:47 +0800
Subject: [PATCH] fix typo
To: libc-alpha@sourceware.org
Cc: Paul.Zimmermann@inria.fr

"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


^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2021-06-02 10:16 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-02  9:56 [PATCH] fix typo Xeonacid
2021-06-02 10:01 ` Paul Zimmermann
  -- strict thread matches above, loose matches on Subject: below --
2021-06-02 10:12 Xeonacid
2021-06-02 10:16 ` Paul Zimmermann
2021-06-02  9:43 Xeonacid
2021-06-02  9:45 ` Xeonacid
2021-06-02  9:29 Xeonacid
2021-06-02  8:49 Xeonacid
2021-06-02  8:55 ` Paul Zimmermann
2021-06-02  9:02 ` Paul Zimmermann
2021-06-02  9:27   ` Xeonacid
2021-06-02  9:29     ` Xeonacid
2021-06-02  9:30     ` Paul Zimmermann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).