Explorar el Código

Fixed use of return in void function

Ingo Albrecht hace 7 años
padre
commit
befacd2cec
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);
 }
 
 /*--------------------------------------------------------- */