Remove dead store identified by a static analyzer (#3341)
Evaluate to_quoted, possibly for side effect (emitting a quote), but ignore its return value. Co-authored-by: Jesse Alama <jesse@lisp.sh>
This commit is contained in:
parent
983601f611
commit
b722d81059
|
@ -2002,7 +2002,7 @@ print(Scheme_Object *obj, int notdisplay, int compact, Scheme_Hash_Table *ht,
|
|||
if (compact) {
|
||||
print_compact(pp, CPT_NULL);
|
||||
} else {
|
||||
notdisplay = to_quoted(NULL, pp, notdisplay);
|
||||
to_quoted(NULL, pp, notdisplay);
|
||||
print_utf8_string(pp, "()", 0, 2);
|
||||
closed = 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user