diff options
| author | Eitan Adler <eadler@FreeBSD.org> | 2012-01-10 02:58:29 +0000 |
|---|---|---|
| committer | Eitan Adler <eadler@FreeBSD.org> | 2012-01-10 02:58:29 +0000 |
| commit | fdba8122d6a4c602309d08c7ce767937cce0c02d (patch) | |
| tree | b8c9bb9ef48327e62d576a03a37809f65547c37e | |
| parent | cc898a0e5c5b81104df5f6f992c1fe527c60a4e2 (diff) | |
Notes
| -rw-r--r-- | usr.bin/brandelf/brandelf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/brandelf/brandelf.c b/usr.bin/brandelf/brandelf.c index d2c8b0142362f..ce462e94c5f04 100644 --- a/usr.bin/brandelf/brandelf.c +++ b/usr.bin/brandelf/brandelf.c @@ -64,7 +64,7 @@ main(int argc, char **argv) const char *strtype = "FreeBSD"; int type = ELFOSABI_FREEBSD; int retval = 0; - int ch, change = 0, verbose = 0, force = 0, listed = 0; + int ch, change = 0, force = 0, listed = 0; while ((ch = getopt(argc, argv, "f:lt:v")) != -1) switch (ch) { @@ -84,7 +84,7 @@ main(int argc, char **argv) listed = 1; break; case 'v': - verbose = 1; + /* does nothing */ break; case 't': if (force) |
