diff options
author | obrien <obrien@FreeBSD.org> | 2001-06-22 21:43:51 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-06-22 21:43:51 +0000 |
commit | fda3cb47bb91bf65f5fb2c6fa759177805a66184 (patch) | |
tree | ae28b749de9817ec112a9068e5e2d98859698d63 /usr.bin/brandelf | |
parent | 24e3134fb398685ae3b18c20a66b575ada4b94bf (diff) | |
download | FreeBSD-src-fda3cb47bb91bf65f5fb2c6fa759177805a66184.zip FreeBSD-src-fda3cb47bb91bf65f5fb2c6fa759177805a66184.tar.gz |
Quiet compiler warnings by making `WARNS 2' clean.
Submitted by: Mike Barcroft <mike@q9media.com>
Set maintainer to myself. This needs to stay in sync with what Buntils
does, and it would be best to pass functionality changes thru me to make
sure future plans are taken into account.
Diffstat (limited to 'usr.bin/brandelf')
-rw-r--r-- | usr.bin/brandelf/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/brandelf/brandelf.c | 11 |
2 files changed, 9 insertions, 6 deletions
diff --git a/usr.bin/brandelf/Makefile b/usr.bin/brandelf/Makefile index 8767913..52f72fa 100644 --- a/usr.bin/brandelf/Makefile +++ b/usr.bin/brandelf/Makefile @@ -1,6 +1,8 @@ # $FreeBSD$ +MAINTAINER= obrien + PROG= brandelf -CFLAGS+= -Wall +WARNS?= 2 .include <bsd.prog.mk> diff --git a/usr.bin/brandelf/brandelf.c b/usr.bin/brandelf/brandelf.c index e26b900..dbbacc4 100644 --- a/usr.bin/brandelf/brandelf.c +++ b/usr.bin/brandelf/brandelf.c @@ -1,4 +1,5 @@ /*- + * Copyright (c) 2000, 2001 David O'Brien * Copyright (c) 1996 Søren Schmidt * All rights reserved. * @@ -170,14 +171,14 @@ fprintf(stderr, "usage: brandelf [-f ELF ABI number] [-v] [-l] [-t string] file } static const char * -iselftype(int elftype) +iselftype(int etype) { - int elfwalk; + size_t elfwalk; for (elfwalk = 0; elfwalk < sizeof(elftypes)/sizeof(elftypes[0]); elfwalk++) - if (elftype == elftypes[elfwalk].value) + if (etype == elftypes[elfwalk].value) return elftypes[elfwalk].str; return 0; } @@ -185,7 +186,7 @@ iselftype(int elftype) static int elftype(const char *elfstrtype) { - int elfwalk; + size_t elfwalk; for (elfwalk = 0; elfwalk < sizeof(elftypes)/sizeof(elftypes[0]); @@ -198,7 +199,7 @@ elftype(const char *elfstrtype) static void printelftypes() { - int elfwalk; + size_t elfwalk; fprintf(stderr, "known ELF types are: "); for (elfwalk = 0; |