Browse Source

Fixed use of return in void function

Ingo Albrecht 7 years ago
parent
commit
befacd2cec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      clish/param/param.c

+ 1 - 1
clish/param/param.c

@@ -72,7 +72,7 @@ void clish_param_delete(clish_param_t * this)
 /*--------------------------------------------------------- */
 void clish_param_insert_param(clish_param_t * this, clish_param_t * param)
 {
-	return clish_paramv_insert(this->paramv, param);
+	clish_paramv_insert(this->paramv, param);
 }
 
 /*--------------------------------------------------------- */