mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
make the unused var warning like gcc's
This commit is contained in:
parent
b52d7fd3d9
commit
c74fc1c0df
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@ PR_FlushScope (def_t *scope, int force_used)
|
|||
expr_t e;
|
||||
e.line = def->line;
|
||||
e.file = def->file;
|
||||
warning (&e, "variable %s unused", def->name);
|
||||
warning (&e, "unused variable `%s'", def->name);
|
||||
}
|
||||
Hash_Del (defs_by_name, def->name);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue