Fix coding-style errors introduced in
ca2f64d5d08c1699ca4b7cb2bf6a76692e809e0f
gcc/fortran/ChangeLog:
* resolve.cc (resolve_select_type): Fix coding style.
libgfortran/ChangeLog:
* caf/single.c (_gfortran_caf_register): Fix coding style.
* io/async.c (update_pdt, async_io): Likewise.
* io/format.c (free_format_data): Likewise.
* io/transfer.c (st_read_done_worker, st_write_done_worker): Likewise.
* io/unix.c (mem_close): Likewise.
gfc_resolve_blocks (code->block, gfc_current_ns);
gfc_current_ns = old_ns;
- free(ref);
+ free (ref);
}
/* Freeing the memory conditionally seems pointless, but
caf_internal_error () may return, when a stat is given and then the
memory may be lost. */
- free(local);
- free(*token);
+ free (local);
+ free (*token);
caf_internal_error (alloc_fail_msg, stat, errmsg, errmsg_len);
return;
}
NOTE ("Changing pdts, current_unit = %p", (void *) (new->u.p.current_unit));
temp = *old;
*old = new;
- free(temp);
+ free (temp);
}
/* Destroy an adv_cond structure. */
/* Loop over the queue entries until they are finished. */
while (ctq)
{
- free(prev);
+ free (prev);
prev = ctq;
if (!au->error.has_error)
{
fnp->format != FMT_NONE; fnp++)
if (fnp->format == FMT_DT)
{
- free(GFC_DESCRIPTOR_DATA(fnp->u.udf.vlist));
+ free (GFC_DESCRIPTOR_DATA(fnp->u.udf.vlist));
free (fnp->u.udf.vlist);
}
{
free (dtp->u.p.current_unit->filename);
dtp->u.p.current_unit->filename = NULL;
- free(dtp->u.p.current_unit->ls);
+ free (dtp->u.p.current_unit->ls);
dtp->u.p.current_unit->ls = NULL;
}
free_newunit = true;
{
free (dtp->u.p.current_unit->filename);
dtp->u.p.current_unit->filename = NULL;
- free(dtp->u.p.current_unit->ls);
+ free (dtp->u.p.current_unit->ls);
dtp->u.p.current_unit->ls = NULL;
}
free_newunit = true;
static int
mem_close (unix_stream *s)
{
- free(s);
+ free (s);
return 0;
}