diff options
Diffstat (limited to 'gcc/fortran/primary.c')
-rw-r--r-- | gcc/fortran/primary.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/primary.c b/gcc/fortran/primary.c index a121999..15cb9a4 100644 --- a/gcc/fortran/primary.c +++ b/gcc/fortran/primary.c @@ -2179,9 +2179,9 @@ gfc_structure_ctor_component; static void gfc_free_structure_ctor_component (gfc_structure_ctor_component *comp) { - gfc_free (comp->name); + free (comp->name); gfc_free_expr (comp->val); - gfc_free (comp); + free (comp); } |