mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
Drop unused 'arg' variable
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
5b49af4ff2
commit
f4941892b3
1 changed files with 1 additions and 2 deletions
3
nasm.c
3
nasm.c
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue