Remove variables which are initialized but never used thereafter reported by gcc46 warning

Approved by:	cperciva
MFC After:	3 days
This commit is contained in:
Eitan Adler 2012-06-19 06:10:24 +00:00
parent 1d76342e83
commit c0fc04b39e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=237255

View File

@ -772,7 +772,6 @@ static int
cctl_delay(int fd, int target, int lun, int argc, char **argv,
char *combinedopt)
{
int datamove_delay;
struct ctl_io_delay_info delay_info;
char *delayloc = NULL;
char *delaytype = NULL;
@ -781,7 +780,6 @@ cctl_delay(int fd, int target, int lun, int argc, char **argv,
int c;
retval = 0;
datamove_delay = 0;
memset(&delay_info, 0, sizeof(delay_info));
@ -3803,7 +3801,7 @@ CTL_DEFAULT_DEV);
int
main(int argc, char **argv)
{
int option_index, c;
int c;
ctladm_cmdfunction command;
ctladm_cmdargs cmdargs;
ctladm_optret optreturn;
@ -3814,10 +3812,9 @@ main(int argc, char **argv)
int target, lun;
int optstart = 2;
int retval, fd;
int retries, timeout;
int retries;
int initid;
option_index = 0;
retval = 0;
cmdargs = CTLADM_ARG_NONE;
command = CTLADM_CMD_HELP;
@ -3826,7 +3823,6 @@ main(int argc, char **argv)
retries = 0;
target = 0;
lun = 0;
timeout = 0;
initid = 7;
if (argc < 2) {