git: 15635c0ed3b1 - stable/13 - backlight: Remove set but not used variable
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 22 Mar 2022 18:53:51 UTC
The branch stable/13 has been updated by pstef: URL: https://cgit.FreeBSD.org/src/commit/?id=15635c0ed3b13ab98e01f842652e44fdef451395 commit 15635c0ed3b13ab98e01f842652e44fdef451395 Author: Piotr Pawel Stefaniak <pstef@FreeBSD.org> AuthorDate: 2022-03-17 21:37:15 +0000 Commit: Piotr Pawel Stefaniak <pstef@FreeBSD.org> CommitDate: 2022-03-22 17:36:04 +0000 backlight: Remove set but not used variable (cherry picked from commit fde687c239e55da067ebd94cfa36e3a8b3a57167) --- usr.bin/backlight/backlight.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/usr.bin/backlight/backlight.c b/usr.bin/backlight/backlight.c index 9cf7a0912e95..7c3f295223f5 100644 --- a/usr.bin/backlight/backlight.c +++ b/usr.bin/backlight/backlight.c @@ -101,11 +101,9 @@ main(int argc, char *argv[]) long percent = -1; const char *percent_error; uint32_t i; - bool setname; bool quiet = false; action = BACKLIGHT_QUERY; - setname = false; fd = -1; while ((ch = getopt(argc, argv, "f:qhi")) != -1) { @@ -114,7 +112,6 @@ main(int argc, char *argv[]) quiet = true; break; case 'f': - setname = true; set_device_name(optarg); break; case 'i':