mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-23 04:52:42 -08:00
fix coverity 1434941 Missing return statement
https://scan7.coverity.com/reports.htm#v29377/p15116/fileInstanceId=18706913&defectInstanceId=4323734&mergedDefectId=1434941
This commit is contained in:
parent
1f58875e1c
commit
0d18fcbbf2
1 changed files with 3 additions and 3 deletions
|
|
@ -90,9 +90,9 @@ cl_object
|
|||
ecl_type_error(cl_object function, const char *place, cl_object o,
|
||||
cl_object type)
|
||||
{
|
||||
si_wrong_type_argument(4, o, type,
|
||||
(*place? make_constant_base_string(place) : ECL_NIL),
|
||||
function);
|
||||
return si_wrong_type_argument(4, o, type,
|
||||
(*place? make_constant_base_string(place) : ECL_NIL),
|
||||
function);
|
||||
}
|
||||
|
||||
/**********************************************************************/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue