Subject: CVS commit: src/usr.bin/elf2ecoff
To: None <source-changes@NetBSD.org>
From: Simon Burge <simonb@netbsd.org>
List: source-changes
Date: 05/31/2006 08:09:55
Module Name: src
Committed By: simonb
Date: Wed May 31 08:09:55 UTC 2006
Modified Files:
src/usr.bin/elf2ecoff: elf2ecoff.c
Log Message:
Fix "pointer targets in passing argument X of 'Y' differ in signedness"
warnings. Originally, bswap32_region() took a u_int32_t * as its first
argument. Since no args passed to it are u_int32_t *, but some are
int32_t *, change it to int32_t * and fix remaining casts.
To generate a diff of this commit:
cvs rdiff -r1.21 -r1.22 src/usr.bin/elf2ecoff/elf2ecoff.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.