units: Remove set but unused variable.

Reported by:	GCC
This commit is contained in:
John Baldwin 2023-06-20 09:28:59 -07:00
parent 1291d48f06
commit ee0299e5f3

View File

@ -763,11 +763,9 @@ main(int argc, char **argv)
EditLine *el;
HistEvent ev;
int inputsz;
char const * history_file;
quiet = false;
readfile = false;
history_file = NULL;
outputformat = numfmt;
quit = false;
while ((optchar = getopt_long(argc, argv, "+ehf:o:qtvH:UV", longopts, NULL)) != -1) {
@ -783,7 +781,7 @@ main(int argc, char **argv)
readunits(optarg);
break;
case 'H':
history_file = optarg;
/* Ignored, for compatibility with GNU units. */
break;
case 'q':
quiet = true;