-v never did anything, so remove the verbose variable and comment it out
in the manpage, but leave the option for compatibility.
Found-by: gcc47
.\" SUCH DAMAGE.
.\"
.\" $FreeBSD: src/usr.bin/brandelf/brandelf.1,v 1.17 2007/03/09 14:36:18 ru Exp $
-.\" $DragonFly: src/usr.bin/brandelf/brandelf.1,v 1.6 2007/09/22 20:50:26 pavalos Exp $
.\"
.Dd February 6, 1997
.Dt BRANDELF 1
.Nd mark an ELF binary for a specific ABI
.Sh SYNOPSIS
.Nm
-.Op Fl lv
+.Op Fl l
.Op Fl f Ar ELF_ABI_number
.Op Fl t Ar string
.Ar
These values are assigned by SCO/USL.
.It Fl l
Writes the list of all known ELF types to the standard error.
-.It Fl v
-Turns on verbose output.
.It Fl t Ar string
Brands the given ELF binaries to be of the
.Ar string
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $FreeBSD: src/usr.bin/brandelf/brandelf.c,v 1.25 2005/05/21 09:55:04 ru Exp $
- * $DragonFly: src/usr.bin/brandelf/brandelf.c,v 1.4 2007/09/22 20:40:06 pavalos Exp $
*/
#include <sys/types.h>
int type = ELFOSABI_FREEBSD;
int retval = 0;
int ch, change = 0, force = 0, listed = 0;
- int __unused verbose = 0;
while ((ch = getopt(argc, argv, "f:lt:v")) != -1)
switch (ch) {
listed = 1;
break;
case 'v':
- verbose = 1;
+ /* does nothing */
break;
case 't':
if (force)