summaryrefslogtreecommitdiffstats
path: root/lib/extra_opts.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/extra_opts.c')
-rw-r--r--lib/extra_opts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/extra_opts.c b/lib/extra_opts.c
index b9843eb..771621d 100644
--- a/lib/extra_opts.c
+++ b/lib/extra_opts.c
@@ -92,14 +92,14 @@ char **np_extra_opts(int *argc, char **argv, const char *plugin_name){
92 /* append the list to extra_args */ 92 /* append the list to extra_args */
93 if(extra_args==NULL){ 93 if(extra_args==NULL){
94 extra_args=ea1; 94 extra_args=ea1;
95 while(ea1=ea1->next) ea_num++; 95 while((ea1 = ea1->next)) ea_num++;
96 }else{ 96 }else{
97 ea_tmp=extra_args; 97 ea_tmp=extra_args;
98 while(ea_tmp->next) { 98 while(ea_tmp->next) {
99 ea_tmp=ea_tmp->next; 99 ea_tmp=ea_tmp->next;
100 } 100 }
101 ea_tmp->next=ea1; 101 ea_tmp->next=ea1;
102 while(ea1=ea1->next) ea_num++; 102 while((ea1 = ea1->next)) ea_num++;
103 } 103 }
104 ea1=ea_tmp=NULL; 104 ea1=ea_tmp=NULL;
105 } 105 }