From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13459 invoked by alias); 16 Jan 2008 01:17:19 -0000 Received: (qmail 13450 invoked by uid 22791); 16 Jan 2008 01:17:18 -0000 X-Spam-Check-By: sourceware.org Received: from bluesmobile.specifix.com (HELO bluesmobile.specifix.com) (216.129.118.140) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 16 Jan 2008 01:17:01 +0000 Received: from [127.0.0.1] (bluesmobile.specifix.com [216.129.118.140]) by bluesmobile.specifix.com (Postfix) with ESMTP id 3EB393C3FB for ; Tue, 15 Jan 2008 17:16:59 -0800 (PST) Subject: [OB] comment fix, corelow.c From: Michael Snyder To: gdb-patches@sourceware.org Content-Type: text/plain Date: Wed, 16 Jan 2008 01:17:00 -0000 Message-Id: <1200446218.3263.40.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.10.3 (2.10.3-4.fc7) Content-Transfer-Encoding: 7bit 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: 2008-01/txt/msg00374.txt.bz2 cut and paste botch... 2008-01-15 Michael Snyder * corelow.c (core_xfer_partial): Comment, cut/paste error. Index: corelow.c =================================================================== RCS file: /cvs/src/src/gdb/corelow.c,v retrieving revision 1.71 diff -u -p -r1.71 corelow.c --- corelow.c 1 Jan 2008 22:53:09 -0000 1.71 +++ corelow.c 16 Jan 2008 01:15:28 -0000 @@ -520,7 +520,7 @@ core_xfer_partial (struct target_ops *op case TARGET_OBJECT_MEMORY: if (readbuf) return (*ops->deprecated_xfer_memory) (offset, readbuf, - len, 0/*write*/, NULL, ops); + len, 0/*read*/, NULL, ops); if (writebuf) return (*ops->deprecated_xfer_memory) (offset, (gdb_byte *) writebuf, len, 1/*write*/, NULL, ops);