From patchwork Tue Aug 12 05:07:25 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Anderson X-Patchwork-Id: 2369 Received: (qmail 8403 invoked by alias); 12 Aug 2014 05:07:32 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 8379 invoked by uid 89); 12 Aug 2014 05:07:31 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=AWL, BAYES_00, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-qg0-f52.google.com X-Received: by 10.224.74.1 with SMTP id s1mr2947453qaj.61.1407820047283; Mon, 11 Aug 2014 22:07:27 -0700 (PDT) Message-ID: <53E9A10D.1090408@gmail.com> Date: Tue, 12 Aug 2014 01:07:25 -0400 From: Sean Anderson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.7.0 MIME-Version: 1.0 To: libc-alpha@sourceware.org Subject: [PATCH] Fix typo in malloc/malloc.c diff --git a/malloc/malloc.c b/malloc/malloc.c index 41fd76a..6ee3840 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -22,7 +22,7 @@ This is a version (aka ptmalloc2) of malloc/free/realloc written by Doug Lea and adapted to multiple threads/arenas by Wolfram Gloger. - There have been substantial changesmade after the integration into + There have been substantial changes made after the integration into glibc in all parts of the code. Do not look for much commonality with the ptmalloc2 version.