Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Dec 2020 02:50:19 GMT
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 760dbe84abfb - Don't set more_data which is never used.
Message-ID:  <202012250250.0BP2oJEe076195@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by delphij:

URL: https://cgit.FreeBSD.org/src/commit/?id=760dbe84abfb0b3aa9b72f7474fb9a066bbdd0cf

commit 760dbe84abfb0b3aa9b72f7474fb9a066bbdd0cf
Author:     Xin LI <delphij@FreeBSD.org>
AuthorDate: 2020-12-25 02:49:12 +0000
Commit:     Xin LI <delphij@FreeBSD.org>
CommitDate: 2020-12-25 02:49:12 +0000

    Don't set more_data which is never used.
    
    MFC after:      2 weeks
---
 usr.sbin/zonectl/zonectl.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/usr.sbin/zonectl/zonectl.c b/usr.sbin/zonectl/zonectl.c
index 6ab38cbd9503..dac773974deb 100644
--- a/usr.sbin/zonectl/zonectl.c
+++ b/usr.sbin/zonectl/zonectl.c
@@ -226,7 +226,6 @@ zonectl_print_rz(struct disk_zone_report *report, zone_output_flags out_flags,
 	uint64_t next_lba = 0;
 	char tmpstr[80];
 	char word_sep;
-	int more_data = 0;
 	uint32_t i;
 
 	field_widths[ZONE_FW_START] = 11;
@@ -237,10 +236,8 @@ zonectl_print_rz(struct disk_zone_report *report, zone_output_flags out_flags,
 	field_widths[ZONE_FW_SEQ] = 14;
 	field_widths[ZONE_FW_RESET] = 16;
 
-	if ((report->entries_available - report->entries_filled) > 0) {
-		more_data = 1;
+	if ((report->entries_available - report->entries_filled) > 0)
 		status = ZONE_PRINT_MORE_DATA;
-	}
 
 	if (out_flags == ZONE_OF_SCRIPT)
 		word_sep = '_';



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012250250.0BP2oJEe076195>