From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2324 invoked by alias); 8 Oct 2004 19:25:50 -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 2221 invoked from network); 8 Oct 2004 19:25:46 -0000 Received: from unknown (HELO walton.sibelius.xs4all.nl) (82.92.89.47) by sourceware.org with SMTP; 8 Oct 2004 19:25:46 -0000 Received: from elgar.sibelius.xs4all.nl (elgar.sibelius.xs4all.nl [192.168.0.2]) by walton.sibelius.xs4all.nl (8.13.0/8.13.0) with ESMTP id i98JNNer020166; Fri, 8 Oct 2004 21:23:23 +0200 (CEST) Received: from elgar.sibelius.xs4all.nl (localhost [127.0.0.1]) by elgar.sibelius.xs4all.nl (8.12.6p3/8.12.6) with ESMTP id i98JNMoY002789; Fri, 8 Oct 2004 21:23:22 +0200 (CEST) (envelope-from kettenis@elgar.sibelius.xs4all.nl) Received: (from kettenis@localhost) by elgar.sibelius.xs4all.nl (8.12.6p3/8.12.6/Submit) id i98JNLKu002786; Fri, 8 Oct 2004 21:23:21 +0200 (CEST) Date: Fri, 08 Oct 2004 19:25:00 -0000 Message-Id: <200410081923.i98JNLKu002786@elgar.sibelius.xs4all.nl> From: Mark Kettenis To: cagney@gnu.org CC: gdb-patches@sources.redhat.com In-reply-to: <41629F23.10201@gnu.org> (message from Andrew Cagney on Tue, 05 Oct 2004 09:18:27 -0400) Subject: Re: [COMMIT] Fix procfs_xfer_partial References: <200410051242.i95Cgqa3023532@juw15.nfra.nl> <41629F23.10201@gnu.org> X-SW-Source: 2004-10/txt/msg00156.txt.bz2 Date: Tue, 05 Oct 2004 09:18:27 -0400 From: Andrew Cagney > - return (*ops->to_xfer_memory) (offset, readbuf, len, 1/*write*/, > + return (*ops->to_xfer_memory) (offset, writebuf, len, 1/*write*/, > NULL, ops); You'll need to cast away the constantness of writebuf. Something detected with -Werror ;-) Darn. Not with gcc-3.2.3. I'll try to fix this over the weekend (I've been away from home for a few days). Mark