1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

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