Fix syntax errors

This commit is contained in:
Justin Ethier 2019-06-05 17:29:56 -04:00
parent 49dbd0160a
commit 092409cb53

View file

@ -5684,7 +5684,10 @@ void GC(void *data, closure cont, object * args, int num_args)
void Cyc_make_shared_object(void *data, object k, object obj)
{
gc_thread_data *thd = (gc_thread_data *)data;
gc_heap_root *heap = thd->heap;
object buf[1];
int tmp, *heap_grown = &tmp;
if (!is_object_type(obj) || // Immediates do not have to be moved
gc_is_stack_obj(data, obj)) { // Not thread-local, assume already on heap
return_closcall1(data, k, obj);