* 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> 2004-12-06 Daniel Jacobowitz <dan@debian.org>
Suggested by Fergal Daly <fergal@esatclear.ie>: Suggested by Fergal Daly <fergal@esatclear.ie>:

View file

@ -63,7 +63,8 @@ netbsd_core_file_p (abfd)
bfd *abfd; bfd *abfd;
{ {
int i, val; int val;
unsigned i;
file_ptr offset; file_ptr offset;
asection *asect; asection *asect;
struct core core; struct core core;