From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10914 invoked by alias); 2 Jan 2012 03:58:56 -0000 Received: (qmail 10906 invoked by uid 22791); 2 Jan 2012 03:58:55 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 02 Jan 2012 03:58:40 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1RhZ2k-00044V-I0 from Yao_Qi@mentor.com ; Sun, 01 Jan 2012 19:58:38 -0800 Received: from SVR-ORW-FEM-05.mgc.mentorg.com ([147.34.97.43]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Sun, 1 Jan 2012 19:58:38 -0800 Received: from [127.0.0.1] (147.34.91.1) by svr-orw-fem-05.mgc.mentorg.com (147.34.97.43) with Microsoft SMTP Server id 14.1.289.1; Sun, 1 Jan 2012 19:58:36 -0800 Message-ID: <4F012B6A.5070607@codesourcery.com> Date: Mon, 02 Jan 2012 03:58:00 -0000 From: Yao Qi User-Agent: Mozilla/5.0 (X11; Linux i686; rv:8.0) Gecko/20111110 Thunderbird/8.0 MIME-Version: 1.0 To: Mark Kettenis CC: , Subject: Re: [PATCH] PIE support for OpenBSD References: <201112172108.pBHL8Th2032226@glazunov.sibelius.xs4all.nl> <20111221171315.GA18194@host2.jankratochvil.net> <201112212126.pBLLQ2Fl013069@glazunov.sibelius.xs4all.nl> <4EF26E18.3030401@earthlink.net> <201112221020.pBMAKaL0007007@glazunov.sibelius.xs4all.nl> <4EF3841C.2050603@earthlink.net> <201112272138.pBRLcpI1006890@glazunov.sibelius.xs4all.nl> In-Reply-To: <201112272138.pBRLcpI1006890@glazunov.sibelius.xs4all.nl> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-IsSubscribed: yes 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 X-SW-Source: 2012-01/txt/msg00017.txt.bz2 On 12/28/2011 05:38 AM, Mark Kettenis wrote: > + if (writebuf) > + return -1; The indentation looks wrong. Fixed it as obvious. -- Yao (齐尧) 2012-01-02 Yao Qi * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent. Index: inf-ptrace.c =================================================================== RCS file: /cvs/src/src/gdb/inf-ptrace.c,v retrieving revision 1.76 diff -u -r1.76 inf-ptrace.c --- inf-ptrace.c 27 Dec 2011 21:36:40 -0000 1.76 +++ inf-ptrace.c 2 Jan 2012 03:55:43 -0000 @@ -590,7 +590,7 @@ struct ptrace_io_desc piod; if (writebuf) - return -1; + return -1; piod.piod_op = PIOD_READ_AUXV; piod.piod_addr = readbuf; piod.piod_offs = (void *) (long) offset;