Re: Fix a typo in autoprewarm.c

From: Bruce Momjian <bruce(at)momjian(dot)us>
To: Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Fix a typo in autoprewarm.c
Date: 2018-01-26 01:13:39
Message-ID: 20180126011339.GC20836@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Fri, Dec 22, 2017 at 02:30:56PM +0900, Masahiko Sawada wrote:
> Hi,
>
> Attached a patch for fixing a typo in autoprewarm.c. I'm sorry if I'm mistaken.
>
> s/withs/with/

Patch applied to head, thanks.

---------------------------------------------------------------------------

>
> Regards,
>
> --
> Masahiko Sawada
> NIPPON TELEGRAPH AND TELEPHONE CORPORATION
> NTT Open Source Software Center

> diff --git a/contrib/pg_prewarm/autoprewarm.c b/contrib/pg_prewarm/autoprewarm.c
> index 006c315..abf8f03 100644
> --- a/contrib/pg_prewarm/autoprewarm.c
> +++ b/contrib/pg_prewarm/autoprewarm.c
> @@ -368,7 +368,7 @@ apw_load_buffers(void)
> if (current_db != blkinfo[i].database)
> {
> /*
> - * Combine BlockRecordInfos for global objects withs those of
> + * Combine BlockRecordInfos for global objects with those of
> * the database.
> */
> if (current_db != InvalidOid)

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ As you are, so once was I. As I am, so you will be. +
+ Ancient Roman grave inscription +

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2018-01-26 01:15:10 Re: [HACKERS][PATCH] Applying PMDK to WAL operations for persistent memory
Previous Message Michael Paquier 2018-01-26 01:12:54 Re: Removing WITH clause support in CREATE FUNCTION, for isCachable and isStrict