summaryrefslogtreecommitdiff
path: root/bfd/netbsd-core.c
diff options
context:
space:
mode:
authorBen Elliston <bje@au.ibm.com>2004-12-07 10:53:44 +0000
committerBen Elliston <bje@au.ibm.com>2004-12-07 10:53:44 +0000
commit45ab555df7252440f6dd546a3ad2027f6e81c313 (patch)
tree5892186d2305237f5bc7eeb3242c516b803c73e9 /bfd/netbsd-core.c
parent1511ddaff3332b836a41f2d1c5e763719b0a4735 (diff)
downloadbinutils-gdb-45ab555df7252440f6dd546a3ad2027f6e81c313.tar.gz
* netbsd-core.c (netbsd_core_file_p): Make `i' unsigned.
Diffstat (limited to 'bfd/netbsd-core.c')
-rw-r--r--bfd/netbsd-core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/netbsd-core.c b/bfd/netbsd-core.c
index 6c43e9ebe0f..001c8038744 100644
--- a/bfd/netbsd-core.c
+++ b/bfd/netbsd-core.c
@@ -63,7 +63,8 @@ netbsd_core_file_p (abfd)
bfd *abfd;
{
- int i, val;
+ int val;
+ unsigned i;
file_ptr offset;
asection *asect;
struct core core;