From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23237 invoked by alias); 7 Mar 2002 22:23:00 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 23186 invoked from network); 7 Mar 2002 22:22:59 -0000 Received: from unknown (HELO localhost.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 7 Mar 2002 22:22:59 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id CAD543E74; Thu, 7 Mar 2002 17:22:57 -0500 (EST) Message-ID: <3C87E841.4070007@cygnus.com> Date: Thu, 07 Mar 2002 14:23:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:0.9.8) Gecko/20020210 X-Accept-Language: en-us MIME-Version: 1.0 To: cgd@broadcom.com Cc: cagney@redhat.com, gdb-patches@sources.redhat.com Subject: Re: [PATCH] sim/MAINTAINERS clarifications. References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-03/txt/msg00109.txt.bz2 > (I'm just wondering who the right person I should pester about a > quick approval for > http://sources.redhat.com/ml/gdb-patches/2002-03/msg00055.html, > since the common part of that is trivial and seems obviously useful, > to me. 8-) Sorry, missed it. I've been assuming that you didn't need approval in src/sim. > + else if (strncmp (fmt, "%#lx<", 5) == 0) > + /* simple hex with 0x prefix*/ > + { > + if (pass == 1) > + lf_printf (file, "%%#lx"); > + else > + { > + lf_printf (file, "(unsigned long) "); > + lf_write (file, param, strlen_param); > + } > + } ``#''? Read man page. Ah, cute. The format string should as far as possible look, smell, and even taste like fprintf() formats so yes. Andrew