* netbsd-core.c (netbsd_core_file_p): Make `i' unsigned.

This commit is contained in:
Ben Elliston 2004-12-07 10:53:44 +00:00
parent 1511ddaff3
commit 45ab555df7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-12-07 Ben Elliston <bje@gnu.org>
* netbsd-core.c (netbsd_core_file_p): Make `i' unsigned.
2004-12-06 Daniel Jacobowitz <dan@debian.org>
Suggested by Fergal Daly <fergal@esatclear.ie>:

View File

@ -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;