* netbsd-core.c (netbsd_core_file_p): Make `i' unsigned.
This commit is contained in:
parent
1511ddaff3
commit
45ab555df7
2 changed files with 6 additions and 1 deletions
|
@ -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>:
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue