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: 379186 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id DA3BB14010C for ; Tue, 12 Aug 2014 15:07:39 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :content-type:content-transfer-encoding; q=dns; s=default; b=fq6 JEmnUBT8elx+6QFkkM8lAdpjCD8GpSwaZeEAxEWLAicc0ELxMiW2u5QIEVyVhuOZ rNYacqhMqF4GeKr5ImIQx/0r1Xavyz2PlWbhdWhg1Puu80Y2knw8HvLlxITLZIqB PcM3Z6STvG0blER0Joo1SX4zrDzNFkf3mTvQ36CU= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :content-type:content-transfer-encoding; s=default; bh=+1EqxjWt+ AFeCUR5uIXdHbMKz/o=; b=yG8TS+5OQnlBLBnHTJiOD+7LC95Z5nnOG7SxAhlcw +YvC598m7YbKAfcV+hxa1nfH3I1VITH8URZjmiG6mAGl/gV+NjQ+AEVBUnIJAabp YZanWP9DwqU30UlD4c5wqyaNiPS7tK2jNApQLb1bV3p1j/A4nwsrFQervf86S6UU Oo= 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.