From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f41.google.com (mail-wr1-f41.google.com [209.85.221.41]) by sourceware.org (Postfix) with ESMTPS id E35C7386F027 for ; Fri, 19 Mar 2021 20:19:05 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org E35C7386F027 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=palves.net Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=alves.ped@gmail.com Received: by mail-wr1-f41.google.com with SMTP id j18so10342578wra.2 for ; Fri, 19 Mar 2021 13:19:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:from:to:references:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=0EW8Znd4m5CslErETuTWPOYQadqedct3sipyHyCunEo=; b=Zk8O7/mFtt6sxctx1mQdU9ZFj39yNGltREqIIeCoKZy/hQFBPwkklsL7zsefZL8UF5 /h33BPfzoWgjoRWYh91el0O1LSxCfC8i0IhOtLYXdcIzHMlkeQlpCzK4VZciHVhKqWW+ aVW8FZMByhWOk4CD2lkLx0mXlYCOcRM4c7JnkQ6EmooHAymzc3h1eDKvdudVGviu0RED L7/7OGYDXtWkaaMFGZWyaz+63mjor+O3lqw1pP3zTCcg2y2W4/ZgNazHlaIlrduebLi2 gGoi1gbDwNmTyNeRZSHUmfPZ1fVNr5J6Yy+Jw+LLhM+aAROroW/6kCaRBXfp5IyIsgEZ cdUg== X-Gm-Message-State: AOAM532tfqElIybOWK9UUF7K9M/VE1m8Lr3rBRT1IcrUfMTKuNl0WCHG Unp448XONRtLSSzNXlFIlMhy+WfPH2+EfA== X-Google-Smtp-Source: ABdhPJwEbNQI9Hx+43G8tl53lVD1En3xfsp551iap98qCE/bERTV8T6tLsVIkHqj4hTROWCrUE5M0A== X-Received: by 2002:adf:f04e:: with SMTP id t14mr6407903wro.100.1616185144520; Fri, 19 Mar 2021 13:19:04 -0700 (PDT) Received: from ?IPv6:2001:8a0:f916:a600:9771:143b:d196:d07e? ([2001:8a0:f916:a600:9771:143b:d196:d07e]) by smtp.gmail.com with ESMTPSA id b65sm7827362wmh.4.2021.03.19.13.19.03 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Fri, 19 Mar 2021 13:19:03 -0700 (PDT) Subject: Re: [PATCH] Reimplement dwarf_unit_type_name From: Pedro Alves To: Tom Tromey , gdb-patches@sourceware.org References: <20210318150524.3677886-1-tromey@adacore.com> Message-ID: <43e52db3-15f0-8fa1-2cc3-c90776104713@palves.net> Date: Fri, 19 Mar 2021 20:19:02 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: <20210318150524.3677886-1-tromey@adacore.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-3.7 required=5.0 tests=BAYES_00, FREEMAIL_FORGED_FROMDOMAIN, FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Mar 2021 20:19:07 -0000 On 18/03/21 15:05, Tom Tromey wrote: > +/* Convert a DWARF unit type into is string name. */ > +extern const char *dwarf_unit_type_name (int unit_type); Typo "is" -> "its".