From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20783 invoked by alias); 16 Jan 2014 17:35:26 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 20758 invoked by uid 89); 16 Jan 2014 17:35:25 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.1 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ie0-f171.google.com Received: from mail-ie0-f171.google.com (HELO mail-ie0-f171.google.com) (209.85.223.171) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Thu, 16 Jan 2014 17:35:24 +0000 Received: by mail-ie0-f171.google.com with SMTP id to1so4211522ieb.2 for ; Thu, 16 Jan 2014 09:35:23 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=V5P0hdTv8ZYEfsh8KlW+/l3twAMBGgMFO/XU9gzUh2E=; b=SD50KGdky78WaRVYtRaGwdcRPyCQXVkfEsWnlNMjE5R9ftwGphuXJkx9CN7XadXHQ8 jK/ZZstJE/2lwID34vdeePgSt7rxXf1H6LbrZKTS7lP4+QFm0NRbLqMyAMvZhiEBYv+a RlsXocbNbEQdN67Gb4XKBe6P70O3Shq8ni+29prCV8i+0U8Ed/4xAO20B07htbz4+7QM DLvlF5hjhN0Rm/tSN9ETPXnFdOg8V3UWmKOSphq6Jp2f3ufzekrUHrultTSsbywxFxAy 7PT3VpUuPZbsRKWjYhwr0/GT+3vLh/CmLL16hD4SD2E8Ee9Uqh0SnwuawqAdu94RS042 i9aw== X-Gm-Message-State: ALoCoQnxD0ZVEb4kQowI1SSA46r7cBvCFpI9h4quExOw2Hw5TKvRwn8BKULAXNUktvvL0jRYbUE6l+EKnv8l9x3xhB/zFe79PDN8B20/cC6ss4uOCF1YDyab9nLqf6ZiVjX+xwxrrcwlL8ID8cqVOVnsbsVoEYArS23ixpbaxaoi5hz3MPkV2Lwmpfl6zxetcEqA9QeOD9IRHzswaSrGLii6uD9xjeK3ww== MIME-Version: 1.0 X-Received: by 10.42.40.83 with SMTP id k19mr8958439ice.3.1389893723066; Thu, 16 Jan 2014 09:35:23 -0800 (PST) Received: by 10.64.58.77 with HTTP; Thu, 16 Jan 2014 09:35:22 -0800 (PST) In-Reply-To: <20140116025206.GP4762@adacore.com> References: <52D6B91C.2030402@redhat.com> <83d2jt418x.fsf@gnu.org> <52D6C940.3040008@redhat.com> <21206.64706.812098.20292@ruffy.mtv.corp.google.com> <20140116025206.GP4762@adacore.com> Date: Thu, 16 Jan 2014 17:35:00 -0000 Message-ID: Subject: Re: [PUSHED] Fix go32-nat.c build fallout from to_detach constification. From: Doug Evans To: Joel Brobecker Cc: Pedro Alves , Eli Zaretskii , gdb-patches Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2014-01/txt/msg00629.txt.bz2 On Wed, Jan 15, 2014 at 6:52 PM, Joel Brobecker wrote: >> + pretty bizarre. We use pulongest here because that's the established >> + portability solution (e.g, we can use %u for uint32_t). */ > ^^^ > > Thinko? I'd expect "cannot"... > > >> + error (_("Dwarf Error: DWP file CU version %s doesn't match" >> + " TU version %s [in DWP file %s]"), >> + pulongest (dwp_file->cus->version), >> + pulongest (dwp_file->tus->version), dwp_name); >> } >> dwp_file->version = dwp_file->cus->version; Yikes. Fixed.