Drop unused 'arg' variable

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2011-07-17 13:55:25 +04:00
parent 5b49af4ff2
commit f4941892b3

3
nasm.c
View File

@ -1094,7 +1094,7 @@ static void process_response_file(const char *file)
static void parse_cmdline(int argc, char **argv)
{
FILE *rfile;
char *envreal, *envcopy = NULL, *p, *arg;
char *envreal, *envcopy = NULL, *p;
int i;
*inname = *outname = *listname = *errname = '\0';
@ -1105,7 +1105,6 @@ static void parse_cmdline(int argc, char **argv)
* First, process the NASMENV environment variable.
*/
envreal = getenv("NASMENV");
arg = NULL;
if (envreal) {
envcopy = nasm_strdup(envreal);
process_args(envcopy);