extra_opts.c: Fix using result as a condition warnings
See,
extra_opts.c:96:14: warning: using the result of an assignment as a condition
without parentheses [-Wparentheses]
while(ea1=ea1->next) ea_num++;
~~~^~~~~~~~~~
extra_opts.c:96:14: note: place parentheses around the assignment to silence
this warning
while(ea1=ea1->next) ea_num++;
^
( )
extra_opts.c:96:14: note: use '==' to turn this assignment into an equality
comparison
while(ea1=ea1->next) ea_num++;
^
==
extra_opts.c:103:14: warning: using the result of an assignment as a condition
without parentheses [-Wparentheses]
while(ea1=ea1->next) ea_num++;
~~~^~~~~~~~~~
extra_opts.c:103:14: note: place parentheses around the assignment to silence
this warning
while(ea1=ea1->next) ea_num++;
^
( )
extra_opts.c:103:14: note: use '==' to turn this assignment into an equality
comparison
while(ea1=ea1->next) ea_num++;
^
==