Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1086)

Unified Diff: bfd/i386os9k.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « bfd/i386msdos.c ('k') | bfd/irix-core.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bfd/i386os9k.c
diff --git a/bfd/i386os9k.c b/bfd/i386os9k.c
index 3beb8a3c1e81eb9295b2733af0dddf3d71aeaad8..cea63bd267ebf70400eebf7ba5b9d08547dd3aef 100644
--- a/bfd/i386os9k.c
+++ b/bfd/i386os9k.c
@@ -1,6 +1,6 @@
/* BFD back-end for os9000 i386 binaries.
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001, 2002,
- 2004, 2005, 2006, 2007, 2009, 2011 Free Software Foundation, Inc.
+ 2004, 2005, 2006, 2007, 2009, 2011, 2012 Free Software Foundation, Inc.
Written by Cygnus Support.
This file is part of BFD, the Binary File Descriptor library.
@@ -120,7 +120,7 @@ os9k_object_p (bfd *abfd)
struct internal_exec anexec;
mh_com exec_bytes;
- if (bfd_bread ((PTR) &exec_bytes, (bfd_size_type) MHCOM_BYTES_SIZE, abfd)
+ if (bfd_bread (&exec_bytes, (bfd_size_type) MHCOM_BYTES_SIZE, abfd)
!= MHCOM_BYTES_SIZE)
{
if (bfd_get_error () != bfd_error_system_call)
@@ -221,5 +221,5 @@ const bfd_target i386os9k_vec =
NULL,
- (PTR) 0,
+ NULL,
};
« no previous file with comments | « bfd/i386msdos.c ('k') | bfd/irix-core.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698