diff m_option.c @ 35261:1c18199bbf7c

Remove assignment that is duplicated a few lines down, after the NULL check.
author reimar
date Mon, 05 Nov 2012 21:41:39 +0000
parents 19212dea7a97
children 8756cd0da7b7
line wrap: on
line diff
--- a/m_option.c	Mon Nov 05 21:37:25 2012 +0000
+++ b/m_option.c	Mon Nov 05 21:41:39 2012 +0000
@@ -472,7 +472,7 @@
 }
 
 static int str_list_add(char** add, int n,void* dst,int pre) {
-  char** lst = VAL(dst);
+  char** lst;
   int ln;
 
   if(!dst) return M_OPT_PARSER_ERR;