Drop unused 'opt' from nasm_opt_val

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2011-07-17 14:06:54 +04:00
parent 32af9d75f3
commit 2b34d06419

@ -736,9 +736,9 @@ char *nasm_get_word(char *p, char **tail)
*/
char *nasm_opt_val(char *p, char **val, char **next)
{
char *q, *opt, *nxt;
char *q, *nxt;
opt = *val = *next = NULL;
*val = *next = NULL;
p = nasm_get_word(p, &nxt);
if (!p)